2020-02-01 10:48:01 -05:00
|
|
|
server {
|
2020-05-16 22:18:16 -04:00
|
|
|
listen $PORT0;
|
2020-02-01 10:48:01 -05: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;
|
|
|
|
}
|