6 lines
182 B
Plaintext
6 lines
182 B
Plaintext
|
|
location ~ ^/(status_81|ping_81)$ {
|
||
|
|
access_log off;
|
||
|
|
fastcgi_pass php81:9000;
|
||
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
|
include fastcgi.conf;
|
||
|
|
}
|