ПРОЕКТЫ 


  АРХИВ 


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: include в if-е


  • To: nginx-ru@xxxxxxxxx
  • Subject: Re: include в if-е
  • From: Aleksandr Sytar <sytar.alex@xxxxxxxxx>
  • Date: Wed, 7 Dec 2011 15:41:43 +0400
  • Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=4/UoofEhwJDzDN3DbZhaTdu+FWrKbXkaDC/VYWTkQS8=; b=x7SUcO8iNX1ENjlco2rZsRjyBXiF14ECsArlIEONz0Wx+WOjz/79eu1UEsAXkab44u 4DyuRTUavFD53uoB8e+fe8CnVpcnaYa6dXa1/JsC/JLhj3xsrb316uJxrbVIFBxucmSV +XQ0wkdMHGfuNl+IhoE95rpfAHCVy4i4BsMNY=
  • In-reply-to: <171344872.20111207152435@xxxxxxxxxxxxxxx>
  • References: <171344872.20111207152435@xxxxxxxxxxxxxxx>

7 декабря 2011 г. 15:24 пользователь Ilya Lobahin
<i.lobahin@xxxxxxxxxxxxxxx> написал:
> Здравствуйте, коллеги.
>
> Пытаюсь сделать так:
> location ~ \.php$ {
>    if ( $uri !~ "^/images/" ){
>        include /etc/nginx/fastcgi.conf;
>    }
> }
>
> Получаю:
> nginx: [emerg] "include" directive is not allowed here
> Почему? В описании директивы контекст любой.
>
> Приходится извращаться так:
> location ~ \.php$ {
>    if ( $uri !~ "^/images/" ){
>        fastcgi_pass   127.0.0.1:8181;  # By all means use a different server 
> for the fcgi processes if you need to
>    }
>        include /etc/nginx/fastcgi2.conf;
> }

А почему не хотите так:

location /images {
...
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:8181;  # By all means use a different
server for the fcgi processes if you need to
    }
}

location ~\.php$ {
   include /etc/nginx/fastcgi2.conf;
}
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.