Welcome! Log In Create A New Profile

Advanced

Getting rid of "Welcome to nginx"

August 16, 2011 02:37PM
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;
}
}
Subject Author Posted

Getting rid of "Welcome to nginx"

Joakim August 16, 2011 02:37PM

Re: Getting rid of "Welcome to nginx"

Mathias Teugels August 16, 2011 03:43PM

Re: Getting rid of "Welcome to nginx"

Joakim August 16, 2011 04:13PM

Re: Getting rid of "Welcome to nginx"

Joakim August 17, 2011 08:46AM

Re: Getting rid of "Welcome to nginx"

Edho Arief August 16, 2011 04:50PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 187
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready