19 lines
367 B
Nginx Configuration File
19 lines
367 B
Nginx Configuration File
server {
|
|
listen $PORT0;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri$args $uri$args/ /index.html =404;
|
|
}
|
|
|
|
location $BASE_HREF/ {
|
|
alias /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri$args $uri$args/ $BASE_HREF/index.html =404;
|
|
}
|
|
|
|
include /etc/nginx/extra-conf.d/*.conf;
|
|
}
|
|
|