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