NGINX - Stub Status

From IT-Arts.net
Revision as of 09:13, 17 January 2026 by Admin (talk | contribs) (Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' ")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Return to Wiki Index



Module ngx_http_stub_status_module

Check your Nginx has the good compilation option:

nginx -V 2>&1 | grep --color -- --with-http_stub_status_module

In /etc/nginx/nginx.conf add:

        ######################################################################################
        #####   Virtual Host Configs
        ######################################################################################

        server {
                listen 127.0.0.1:80;
                server_name 127.0.0.1;

                location /nginx_status {
                        stub_status;
                }
        }



Sources