16 lines
171 B
Plaintext
16 lines
171 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
location / {
|
||
|
root /usr/share/nginx/html;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 8080;
|
||
|
|
||
|
location /stub_status {
|
||
|
stub_status;
|
||
|
}
|
||
|
}
|