Nginx状态页面

时间:2017-05-11 07:27:45

标签: nginx nginx-location

Nginx状态页是否显示所有子服务器块的信息,或者只是嵌入了位置指令中该服务器的信息?

    location /nginx_status {
            stub_status on;
            access_log off;
            #allow 127.0.0.1;
            #deny all;
    }

1 个答案:

答案 0 :(得分:0)

ngx_http_stub_status_module显示有关整个nginx服务器应用程序的状态信息,而不是特定的虚拟主机或位置。

您可以查看来源here