Refactoring and updating code for deployment to a caprover server

This commit is contained in:
Jason Williams
2025-01-06 13:10:45 -07:00
parent deaa3d6841
commit 78a535d3a0
6 changed files with 25 additions and 28 deletions

14
nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
root /www;
location / {
index index.html;
try_files $uri /index.html;
}
location /lucy {
index index.html;
try_files $uri /lucy.html;
}
}