Fix docker build

and add catchall route
This commit is contained in:
David Baker 2021-12-20 20:05:05 +00:00
commit 31845dea10
2 changed files with 16 additions and 2 deletions

10
scripts/default.conf Normal file
View file

@ -0,0 +1,10 @@
server {
listen 8080;
server_name localhost;
location / {
root /app;
try_files $uri /$uri /index.html;
}
}