Getting rid of "Welcome to nginx"

Joakim nginx-forum at nginx.us
Tue Aug 16 18:37:45 UTC 2011


Hi guys,

I've just setup nginx on my Ubuntu staging machine. Entering
http://192.168.1.1/index.php works like a charm and loads the index.php
file i've put in the /var/www/public_html folder. http://192.168.1.1
however instead shows the "Welcome to nginx!" page and not my index.php
file.

What am I doing wrong? Here's my nginx config:

server {

        listen 80 default;                                             
        root /var/www/public_html;
        index index.php index.html index.htm;
        server_name _;

        location / {
                try_files $uri $uri/ /index.html;
        }

        location ~ \.php$ {
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi_params;
        }
}

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,213878,213878#msg-213878



More information about the nginx mailing list