nginx监控

–with-http_stub_status_module
location /nginx_status {
stub_status on;
access_log off;
allow 192.168.1.100; 访问IP
deny all;
}
http://192.168.1.100/nginx_status

你可能感兴趣的:(nginx监控)