cr-connect-bpmn/nginx.conf
2020-05-27 08:53:30 -04:00

11 lines
171 B
Nginx Configuration File

server {
listen $PORT0;
location $BASE_HREF/ {
alias /etc/nginx/html/;
index index.html index.htm;
try_files $uri$args $uri $BASE_HREF/index.html;
}
}