12 lines
241 B
Plaintext
12 lines
241 B
Plaintext
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|