We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c463389 commit 818909dCopy full SHA for 818909d
1 file changed
examples/fpm-nginx-dhi/config/nginx_default.conf
@@ -55,6 +55,20 @@ server {
55
allow fd00::/8;
56
deny all;
57
}
58
+
59
+ # nginx ping
60
+ location /nginx_ping {
61
+ add_header Content-Type text/plain;
62
+ return 200 'pong';
63
+ access_log off;
64
+ allow 127.0.0.1;
65
+ allow 10.0.0.0/8;
66
+ allow 172.16.0.0/12;
67
+ allow 192.168.0.0/16;
68
+ allow ::1;
69
+ allow fd00::/8;
70
+ deny all;
71
+ }
72
73
# php-fpm status/ping
74
location ~ ^/(php_fpm_status|php_fpm_ping)$ {
0 commit comments