10 lines
192 B
Plaintext
10 lines
192 B
Plaintext
|
server {
|
||
|
listen {{SPIFFWORKFLOW_FRONTEND_INTERNAL_PORT}};
|
||
|
server_name localhost;
|
||
|
|
||
|
location / {
|
||
|
root /usr/share/nginx/html;
|
||
|
try_files $uri $uri/ /index.html;
|
||
|
}
|
||
|
}
|