cr-connect-bpmn/nginx.conf

14 lines
256 B
Nginx Configuration File
Raw Normal View History

2020-02-01 10:48:01 -05:00
server {
listen $PORT0;
2020-05-23 23:05:19 -04:00
root /usr/share/nginx/html;
index index.html index.htm;
location $BASE_HREF {
2020-05-23 18:55:13 -04:00
alias /usr/share/nginx/html;
try_files $uri$args $uri$args/ $BASE_HREFindex.html =404;
2020-02-01 10:48:01 -05:00
}
include /etc/nginx/extra-conf.d/*.conf;
}