Hi,
I have a completely fresh install of :
a)Homestead(laravel/homestead (virtualbox, 0.2.2)
b)Vagrant (v 1.7.2)
c) VirtualBox (v 4.3.2)
b) My host OS is Mavericks
I can launch homestead successfully:
...
default: 3306 => 33060 (adapter 1)
default: 3306 => 33060 (adapter 1)
default: 80 => 8000 (adapter 1)
default: 22 => 2222 (adapter 1) ...
Note that I have port forwarding enabled from port 8000 on my host to port 80 on my homestead VM.
MY PROBLEM:
Nginx is not serving web page.
Chromes error message:Error code: ERR_CONNECTION_REFUSED
I then ssh onto the VM and notice there are no sites-enabled files under /etc/nginx/sites-enabled/, but that is suppose to be irrelevant because my YAML file(from my understanding) takes care of any sites's mapping(virtual servers).
I also see there is absolultely no server section in my /etc/nginx/nginx.conf file
I then find a simple curl request returns the same error(on ports 80 and 8000) even though nginx is up and running
{
curl 127.0.0.1:8000
Curl: (7) Failed to connect to 127.0.0.1 port 8000: Connection refused
curl 127.0.0.1
Curl: (7) Failed to connect to 127.0.0.1 port 80: Connection refused
}
Any advise would be so much appreciated.
Remember that my YAML file is suppose to setup any NGINX servers, so I'd like to refrain from configuring the nginx service, trying to stay away from hackjobs as this is suppose to work "off the shelf"..
Thanks alot