summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-01-26 12:17:52 +0100
committervarac <varacanero@zeromail.org>2015-01-26 12:17:52 +0100
commit163a9790a81201ae58b88024b76c2cc0b004d8b3 (patch)
treee58696edbb03b0822abd6c7d8bb5803bb1639d95 /Vagrantfile
parent2fb15ab3f6ed53434803791df9a38879e44b1195 (diff)
add guest ip for vagrant port forwarding, because useragent listens only on 127.0.0.1
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index dc1ce1e1..1cd18076 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -56,7 +56,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end
- config.vm.network :forwarded_port, guest: 3333, host: 3333
+ config.vm.network :forwarded_port, guest: 3333, guest_ip: '127.0.0.1', host: 3333
config.vm.provider "virtualbox" do |v|
v.memory = 1024
end