cr-connect-bpmn/nginx.conf

13 lines
196 B
Nginx Configuration File
Raw Normal View History

2020-02-01 10:48:01 -05:00
server {
listen $PORT0;
port_in_redirect off;
location $BASE_HREF/ {
alias /etc/nginx/html/;
index index.html index.htm;
2020-05-27 08:42:49 -04:00
try_files $uri$args $uri $BASE_HREF/index.html;
2020-02-01 10:48:01 -05:00
}
}