29 lines
502 B
Plaintext
29 lines
502 B
Plaintext
|
|
# App1 Nginx configuration
|
||
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name _;
|
||
|
|
|
||
|
|
root /var/www/app1;
|
||
|
|
index index.html;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
try_files $uri $uri/ =404;
|
||
|
|
}
|
||
|
|
|
||
|
|
location /status {
|
||
|
|
stub_status on;
|
||
|
|
access_log off;
|
||
|
|
allow 127.0.0.1;
|
||
|
|
allow 192.168.0.0/24;
|
||
|
|
deny all;
|
||
|
|
}
|
||
|
|
|
||
|
|
location /nginx_status {
|
||
|
|
stub_status on;
|
||
|
|
access_log off;
|
||
|
|
allow 127.0.0.1;
|
||
|
|
allow 192.168.0.0/24;
|
||
|
|
deny all;
|
||
|
|
}
|
||
|
|
}
|