From 2254250ab078cef106c68698520a3902a3fa088a Mon Sep 17 00:00:00 2001 From: Melissa Avery-Weir Date: Fri, 12 Jul 2013 17:14:16 -0400 Subject: [PATCH] Got the port forwarding working. Chrome considers 6666 a dangerous port. :poop: --- vagrant_linux_dev_env/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant_linux_dev_env/Vagrantfile b/vagrant_linux_dev_env/Vagrantfile index 4c02437..3b0eeda 100644 --- a/vagrant_linux_dev_env/Vagrantfile +++ b/vagrant_linux_dev_env/Vagrantfile @@ -9,7 +9,7 @@ Vagrant.configure("2") do |config| # Every Vagrant virtual environment requires a box to build off of. config.vm.box = "precise32" config.vm.provision :shell, :path => "bootstrap.sh" - config.vm.network :forwarded_port, host: 6666, guest: 80 + config.vm.network :forwarded_port, host: 8080, guest: 80 # The url from where the 'config.vm.box' box will be fetched if it # doesn't already exist on the user's system.