feat: public self-hosting

This commit is contained in:
2025-07-04 10:04:28 -04:00
parent 60c9cec7aa
commit a41d1ceaea
2 changed files with 24 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}