Reorder forward port args in Getting Started

This commit is contained in:
David Santoso 2015-02-24 13:13:56 -05:00
parent e9b00972b0
commit 9ae6e5aa90
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ is a simple edit to the Vagrantfile, which now looks like this:
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise32"
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network :forwarded_port, host: 4567, guest: 80
config.vm.network :forwarded_port, guest: 80, host: 4567
end
```