Всех приветствую Решил попробовать nginx без апача, вообще то все вроде нормально но никак не получается одна вещь. Например у меня есть на сервер postfixadmin и phpmyadmin первый лежит в /var/www/html а второй в /usr/share/ Как мне fastcgi серверу объяснить какую руут подставлять и вообще возможно ли это?.
#
# The default server
#
server {
listen 10.1.1.14:80;
server_name my.domain.ru;
charset koi8-r;
access_log /var/log/nginx/host.access.log main;
location /postfixadmin {
root /var/www/html;
index index.php index.html index.htm;
}
location /phpmyadmin {
root /usr/share;
index index.php index.html index.htm;
}
#error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
#pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
location ~ /\.ht {
deny all;
}
}