cr-connect-bpmn/nginx.conf

15 lines
269 B
Nginx Configuration File
Raw Normal View History

2020-02-01 15:48:01 +00:00
server {
listen $PORT0;
location $BASE_HREF/ {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri$args $uri$args/ $BASE_HREF/index.html =404;
2020-02-01 15:48:01 +00:00
}
error_page 404 $BASE_HREF/index.html
2020-02-01 15:48:01 +00:00
include /etc/nginx/extra-conf.d/*.conf;
}