cleaner nginx status monitoring configuration

This commit is contained in:
Daniel Micay 2021-06-22 23:41:35 -04:00
parent b9f65f310e
commit e06942c803

View File

@ -363,9 +363,15 @@ http {
listen 127.0.0.1:81;
listen [::1]:81;
location /nginx_status {
root /var/empty;
location = /nginx_status {
stub_status;
access_log off;
}
location / {
return 404;
}
}
}