Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Трудности с организацие й поддоменов и точкой вх ода для php-скрипта
Что-то тут не то)
В моем nginx'e нет директивы fastcgi_script_filename и
файла fastcgi.conf. Потому пришлось самому
придумать этому созвучный аналог, и
вышло следующее:
server {
listen 80;
server_name site.com
a1.site.com;
root /home/www/site.com;
index index.php;
location = / {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
}
location /application/ {
#return 404; пока решил поставить редирект
rewrite ^ / permanent;
}
location / {
root /home/www/site.com;
try_files $uri $uri @php;
}
location @php {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param QUERY_STRING r=$uri&$args;
}
location = /index.php {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
}
}
Работает вроде так как нужно,
благодарю.
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,213831,213926#msg-213926
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|