Здравствуйте, имею VDS машину. Настраиваю связку nginx+php-fpm на Debian 6. Файл test.php с содержанием
<?php phpinfo(); ?>
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default_server ipv6only=on; ## listen for ipv6
root /var/www/www.домен.ru;
index index.php index.html index.htm;
# Make site accessible from http://localhost/
server_name www.домен.ru;
server_tokens off; # Убрать версию nginx
charset utf-8; # Кодировка сервера
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME /home/www/www.домен.ru$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
location ~ /\.ht {
deny all;
}
}