Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
глюк с fast-cgi
Здравствуйте, nginx-ru.
у мя 2 хоста одинаковых вот конфиг
server {
listen 83.222.x.x:80;
server_name test.mp3.net;
root /home/mp3/site;
charset windows-1251;
error_page 403 503 /nolog;
access_log /home/mp3/logs/nginx.access.log combined;
location = /nolog { access_log off; return 204; }
location / {
index index.html index.shtml index.php;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/home/mp3/site$fastcgi_script_name;
include conf/fastcgi_params;
}
}
server {
listen 83.222.x.x:80;
server_name mysql.mp3.net;
root /home/mp3/mysql;
charset windows-1251;
access_log /dev/null;
location / {
index index.html index.shtml index.php;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/home/mp3/mysql$fastcgi_script_name;
include conf/fastcgi_params;
}
}
на 2 хосте mysql.mp3.net скрипты PHP нормально работают, а на 1 nginx
выдает php код скрипта как обычный html документ.
В чем тут дело может быть?
--
С уважением,
Евгений mailto:jeka@xxxxxxxxx
|