mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-01-09 08:42:14 +00:00
13 lines
196 B
Nginx Configuration File
13 lines
196 B
Nginx Configuration File
server {
|
|
listen $PORT0;
|
|
|
|
port_in_redirect off;
|
|
|
|
location $BASE_HREF/ {
|
|
alias /etc/nginx/html/;
|
|
index index.html index.htm;
|
|
try_files $uri$args $uri $BASE_HREF/index.html;
|
|
}
|
|
}
|
|
|