8 lines
190 B
Plaintext
8 lines
190 B
Plaintext
|
|
location ~ [^/]\.php(/|$)
|
||
|
|
{
|
||
|
|
try_files $uri =404;
|
||
|
|
fastcgi_pass unix:/tmp/php-cgi-{$PHP_VERSION}.sock;
|
||
|
|
fastcgi_index index.php;
|
||
|
|
include fastcgi.conf;
|
||
|
|
include pathinfo.conf;
|
||
|
|
}
|