ansible-role-nginx/files/nginx/nginx_status.conf

12 lines
241 B
Plaintext
Raw Permalink Normal View History

2020-04-16 22:55:41 +00:00
server {
listen 127.0.0.1;
server_name localhost;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}