cr-connect-bpmn/nginx.conf
2020-05-23 15:07:55 -04:00

12 lines
217 B
Nginx Configuration File

server {
listen $PORT0;
location $BASE_HREF {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ $BASE_HREF/index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}