mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-02-17 10:57:17 +00:00
11 lines
171 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
|