15 lines
198 B
Plaintext
15 lines
198 B
Plaintext
server {
|
|
listen 8081;
|
|
listen [::]:8081;
|
|
server_name _;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|
|
|
|
|