This repository has been archived on 2024-07-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
etckeeper/nginx/conf.d/status.conf
T
2021-11-10 06:25:03 +01:00

11 lines
183 B
Plaintext

server {
listen 127.0.0.1:80;
listen [::1]:80;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}