mirror of
https://github.com/mashirozx/docker-php-nginx.git
synced 2024-11-22 06:48:14 +08:00
added nginx location for fpm ping
This commit is contained in:
parent
3c133d965a
commit
5c674bdd96
@ -65,5 +65,15 @@ http {
|
||||
log_not_found off;
|
||||
deny all;
|
||||
}
|
||||
|
||||
# allow fpm ping and status from localhost
|
||||
#
|
||||
location ~ ^/(fpm-status|fpm-ping)$ {
|
||||
access_log off;
|
||||
allow 127.0.0.1;
|
||||
deny all;
|
||||
include fastcgi_params;
|
||||
fastcgi_pass 127.0.0.1:9000;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user