2020-02-01 15:48:01 +00:00
|
|
|
server {
|
2020-05-17 02:18:16 +00:00
|
|
|
listen $PORT0;
|
2020-05-24 02:54:10 +00:00
|
|
|
|
2020-05-27 13:29:02 +00:00
|
|
|
port_in_redirect off;
|
|
|
|
|
2020-05-24 03:55:43 +00:00
|
|
|
location $BASE_HREF/ {
|
2020-05-26 18:48:31 +00:00
|
|
|
alias /etc/nginx/html/;
|
2020-05-25 15:51:57 +00:00
|
|
|
index index.html index.htm;
|
2020-05-27 12:42:49 +00:00
|
|
|
try_files $uri$args $uri $BASE_HREF/index.html;
|
2020-02-01 15:48:01 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-24 02:54:10 +00:00
|
|
|
|