cr-connect-bpmn/nginx.conf

12 lines
217 B
Nginx Configuration File
Raw Normal View History

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