deploy setup

This commit is contained in:
2026-02-27 21:34:13 -06:00
parent 9d7a443b7c
commit 24b9f21541
4 changed files with 53 additions and 1 deletions

12
client/nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}