Nginx solution for check http_stub_status_module
Nginx add internal configuration to use http_stub_status_module
server {
listen 80;
server_name localhost;
location /nginx_status {
stub_status on;
access_log off;
# Security: Only allow access from 127.0.0.1 IP #
allow 127.0.0.1;
deny all;
}