Forward the port of the webinterface on the correct node

Change-Id: Icaeb4af7bee9e161a37ef49ab231329c53c37428
This commit is contained in:
Christian Berendt 2015-04-03 10:50:01 +02:00
parent 67cb2cce1f
commit 1c03b9a673
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -31,7 +31,6 @@ Vagrant.configure(2) do |config|
node.vm.network :private_network, ip: '10.0.88.10'
config.vm.provision "shell",
inline: "/vagrant/contrib/install.sh -i messaging -i database"
node.vm.network 'forwarded_port', guest: 80, host: 1080
node.vm.network 'forwarded_port', guest: 15_672, host: 15_672
end
@ -40,6 +39,7 @@ Vagrant.configure(2) do |config|
node.vm.network :private_network, ip: '10.0.88.20'
config.vm.provision "shell",
inline: "/vagrant/contrib/install.sh -i faafo -d 'mysql://faafo:password@%10.0.88.10:3306/faafo' -m 'amqp://guest:guest@10.0.88.10:5672/'"
node.vm.network 'forwarded_port', guest: 80, host: 1080
end
config.vm.define "worker" do |node|