13 lines
223 B
Plaintext
13 lines
223 B
Plaintext
server {
|
|
listen 11.200.0.3:80;
|
|
server_name localhost;
|
|
|
|
location /basic_status {
|
|
stub_status on;
|
|
access_log off;
|
|
allow 11.0.0.0/8;
|
|
allow 192.168.30.0/24;
|
|
deny all;
|
|
}
|
|
}
|