ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: nginx регулярные выражени я



2011/8/23 quux <nginx-forum@xxxxxxxx>:
> Таким образом работает, но у меня пул
> серверов fastcgi
>
> upstream phpFCGICluster {
>        server  127.0.0.1:9000;
> }
>
> и если я указываю
>
> proxy_pass phpFCGICluster/script.php?$value;
>
> то nginx выдает 500 Internal Server Error, а в логах:
>
> 2011/08/23 15:31:39 [error] 4440#0: *1 invalid URL prefix in
> "phpFCGICluster/script.php?asdfasdf", client: 95.57.204.225, server:
> drawit, request: "GET /anchor/asdfasdf HTTP/1.0", host: "domain.com"
>
> Подскажите как корректно вписать пул
>

proxy_pass работает с HTTP.
fastcgi_pass работает с FastCGI.

Вам нужно

location /anchor/ {
  location ~ ^/anchor/(?<value>.*)$ {
    fastcgi_pass phpFCGICluster;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME  /home/www/script.php;
    fastcgi_param QUERY_STRING $value;
  }
}
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.