Files
ansible-pull/roles/webservers/files/nginx_localhost
2022-09-24 20:33:37 +02:00

11 lines
255 B
Plaintext

server {
listen 80;
server_name localhost;
location /nginx-status {
stub_status on;
access_log off;
allow 127.0.0.1;
allow ::1;
deny all;
}
}