Hello.
Понадобилось мне добавить поддержку php в nginx. Поставил php5-fpm и сопутсвующие пакеты. Конфиг nginx:
server {
listen 80;
server_name gr.com;
charset utf-8;
location / {
root /var/www/test;
index index.php index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/test$fastcgi_script_name;
include fastcgi_params;
include /etc/nginx/fastcgi_params;
}
}
netstat -nat | grep 9000
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN
В ответ получаю следующее(заодно версии):
curl -i gr.com
HTTP/1.1 404 Not Found
Server: nginx/0.8.54
Date: Tue, 26 Jul 2011 20:48:50 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
X-Powered-By: PHP/5.3.6-6~dotdeb.1
Подскажите советом, или хотя бы чем продебажить что здесь не так.
Спасибо