NgixProxy_Pathfinder/nginx/snippets/stub_status.conf

11 lines
271 B
Plaintext

# --- Pathfinder Monitoring: Stub Status ---
# Fornece métricas básicas de conexões ativas para o Zabbix/Prometheus.
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
allow 172.17.0.0/24; # Range interna itguys
deny all;
}