mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-01-13 02:24:39 +00:00
12 lines
229 B
Nginx Configuration File
12 lines
229 B
Nginx Configuration File
server {
|
|
listen $PORT0;
|
|
|
|
location $BASE_HREF/ {
|
|
alias /etc/nginx/html/;
|
|
index index.html index.htm;
|
|
try_files $uri$args $uri$args/ $uri $uri/ $BASE_HREF/index.html;
|
|
rewrite ^([^.]*[^/])$ $1/ permanent;
|
|
}
|
|
}
|
|
|