cr-connect-bpmn/nginx.conf

13 lines
196 B
Nginx Configuration File
Raw Normal View History

2020-02-01 15:48:01 +00:00
server {
listen $PORT0;
port_in_redirect off;
location $BASE_HREF/ {
alias /etc/nginx/html/;
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
}
}