We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c133d9 commit 5c674bdCopy full SHA for 5c674bd
config/nginx.conf
@@ -65,5 +65,15 @@ http {
65
log_not_found off;
66
deny all;
67
}
68
+
69
+ # allow fpm ping and status from localhost
70
+ #
71
+ location ~ ^/(fpm-status|fpm-ping)$ {
72
+ access_log off;
73
+ allow 127.0.0.1;
74
+ deny all;
75
+ include fastcgi_params;
76
+ fastcgi_pass 127.0.0.1:9000;
77
+ }
78
79
0 commit comments