fixing build and nginx

This commit is contained in:
2026-04-25 20:35:52 -04:00
parent 1e0df31cd4
commit 451151628c
2 changed files with 12 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}