mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-01-13 02:24:39 +00:00
14 lines
256 B
Nginx Configuration File
14 lines
256 B
Nginx Configuration File
server {
|
|
listen $PORT0;
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
|
|
location $BASE_HREF {
|
|
alias /usr/share/nginx/html;
|
|
try_files $uri$args $uri$args/ $BASE_HREFindex.html =404;
|
|
}
|
|
|
|
include /etc/nginx/extra-conf.d/*.conf;
|
|
}
|
|
|