Welcome! Log In Create A New Profile

Advanced

Re: Nginx 1.7.0: location @php

June 01, 2014 11:47PM
Francis,

We are going in circles without reaching a solution. I think what I asked is very clear and simple:
How do I avoid repeating a segment of configuration code assigned to @php into various locations:
location @php {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass fastcgi;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
include fastcgi.conf;
}

The above configuration will never change, regardless in what location is used:
location ^~ /alpha {
auth_basic "Restricted Access";
auth_basic_user_file htpasswd;
try_files $uri $uri/ /alpha/index.php?$uri&$args;
location ~ \.php$ {
try_files @php =404;
}
}

location ^~ /beta {
try_files $uri $uri/ /beta/index.php?$uri&$args;
location ~ \.php$ {
try_files @php =404;
}
}

If I replace the @php contents into /beta location, everything works.
location ^~ /beta {
try_files $uri $uri/ /beta/index.php?$uri&$args;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass fastcgi;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
include fastcgi.conf;
}
}
Subject Author Posted

Nginx 1.7.0: location @php

TECK May 25, 2014 05:49AM

Re: Nginx 1.7.0: location @php

Francis Daly May 25, 2014 09:30AM

Re: Nginx 1.7.0: location @php

TECK May 31, 2014 01:59AM

Re: Nginx 1.7.0: location @php

Francis Daly May 31, 2014 06:00AM

Re: Nginx 1.7.0: location @php

TECK May 31, 2014 06:31AM

Re: Nginx 1.7.0: location @php

Francis Daly May 31, 2014 07:28AM

Re: Nginx 1.7.0: location @php

TECK June 01, 2014 11:47PM

Re[2]: Nginx 1.7.0: location @php

artem June 02, 2014 02:26AM

Re: Nginx 1.7.0: location @php

support June 02, 2014 02:32AM

Re: Nginx 1.7.0: location @php

TECK June 04, 2014 11:36PM

Re: Nginx 1.7.0: location @php

Jonathan Matthews June 02, 2014 07:52AM

Re: Nginx 1.7.0: location @php

TECK June 04, 2014 11:41PM

Re: Nginx 1.7.0: location @php

Reinis Rozitis June 05, 2014 04:32AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 216
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready