Want to improve this question? Update the question so it s on-topic for Stack Overflow.
Closed 10 years ago.
I m running into a small problem at the end of the Getting Started guide for vagrant
. I m working on a CentOS basebox that has Apache2 running (provisioning via Puppet). I ve set up port forwarding for web requests using the following line in Vagrantfile
:
config.vm.forward_port "web", 80, 4567
But when I make requests to that port, they fail. The error reported by Safari is Safari can’t open the page “http://localhost:4567/” because the server unexpectedly dropped the connection.
I did a vagrant reload
and saw "[default] -- web: 80 => 4567 (adapter 1)" in the scroll, so where should I begin to troubleshoot this? Thanks.