mdserver-web/plugins/openresty/conf/nginx_status.conf

10 lines
132 B
Plaintext

server {
listen 6666;
server_name 127.0.0.1;
allow 127.0.0.1;
location /nginx_status {
stub_status on;
access_log off;
}
}