2020-02-01 15:48:01 +00:00
|
|
|
server {
|
2020-05-17 02:18:16 +00:00
|
|
|
listen $PORT0;
|
2020-02-01 15:48:01 +00:00
|
|
|
|
|
|
|
location / {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
index index.html index.htm;
|
|
|
|
try_files $uri $uri/ /index.html =404;
|
|
|
|
}
|
|
|
|
|
|
|
|
include /etc/nginx/extra-conf.d/*.conf;
|
|
|
|
}
|