NGinx не хочет использовать мою стандартную директорию
Здравствуйте,уважаемые бородатые администраторы! Сегодня я снова пришёл докучать вас и Вас своими вопросами.
Собственно NGinx при переходе на сервер выводит: Welcome to nginx on Debian!
If you see this page, the nginx web server is successfully installed and working on Debian. Further configuration is required.
For online documentation and support please refer to nginx.org
Please use the reportbug tool to report bugs in the nginx package with Debian. However, check existing bug reports before reporting a new bug.
Thank you for using debian and nginx.
Я создал файл index.html с нужным содержанием. Но NGinx всё равно выводит своё приветствие.
Содержание /etc/nginx/sites-enabled
server {
listen 80;
root /home/debian/www;
server_name 176.103.149.195;
index index.html index.php;
access_log /home/user/logs/nginx.access.log;
location ~ \.(php)$ {
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
#
fastcgi_connect_timeout 60;
fastcgi_send_timeout 60;
fastcgi_read_timeout 60;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
fastcgi_intercept_errors on;
include fastcgi_params;
client_max_body_size 10m;
client_body_buffer_size 128k;
expires off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
location / {
proxy_redirect off;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 1024k;
proxy_buffers 8 5120k;
proxy_busy_buffers_size 10240k;
proxy_temp_file_write_size 10240k;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
expires off;
}
}
Сабж,что не так? P.S.Я перезагружал NGinx несколько раз,не помогло! P.P.S.nginx.conf копировал через nano,может быть что-то криво.