mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-05 22:24:56 +00:00
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;
|
||
|
}
|
||
|
}
|