Networking configuration
config.vm.network :forwarded_port, guest: 80, host: 4567
vagrant up # if the machine is not running
vagrant reload # if the machine is running
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise64"
config.vm.network :forwarded_port, guest: 80, host: 4567
end