Files
linuxiarz_vps_angie/conf.d/status.conf
2025-11-16 23:45:16 +01:00

37 lines
559 B
Plaintext

include conf.d/prometheus_all.conf;
server {
listen 84;
listen 86;
access_log off;
error_log off;
auto_redirect on;
location /nginx_status {
stub_status on;
access_log off;
allow all;
}
location /status/ {
api /status/;
api_config_files on;
}
location /console/ {
alias /usr/share/angie-console-light/html/;
index index.html;
}
location /console/api/ {
api /status/;
}
location =/p8s {
prometheus all;
}
}