Nginx 状态页面
Nginx Status Page
Nginx 状态页面是显示所有子服务器块的信息还是仅针对嵌入了位置指令的服务器?
location /nginx_status {
stub_status on;
access_log off;
#allow 127.0.0.1;
#deny all;
}
ngx_http_stub_status_module 显示有关整个 nginx 服务器应用程序的状态信息,而不是特定的虚拟主机或位置。
您可以查看来源here。
Nginx 状态页面是显示所有子服务器块的信息还是仅针对嵌入了位置指令的服务器?
location /nginx_status {
stub_status on;
access_log off;
#allow 127.0.0.1;
#deny all;
}
ngx_http_stub_status_module 显示有关整个 nginx 服务器应用程序的状态信息,而不是特定的虚拟主机或位置。
您可以查看来源here。