13 lines
196 B
Nginx Configuration File
13 lines
196 B
Nginx Configuration File
|
server {
|
||
|
listen $PORT0;
|
||
|
|
||
|
port_in_redirect off;
|
||
|
|
||
|
location $BASE_HREF/ {
|
||
|
alias /etc/nginx/html/;
|
||
|
index index.html index.htm;
|
||
|
try_files $uri$args $uri $BASE_HREF/index.html;
|
||
|
}
|
||
|
}
|
||
|
|