Initial commit: Nat20 Notes — TTRPG session transcription & summarization

This commit is contained in:
KansaiGaijin
2026-07-06 23:45:54 +12:00
commit 524c8ab96d
50 changed files with 2969 additions and 0 deletions

17
frontend/nginx.conf Normal file
View File

@@ -0,0 +1,17 @@
server {
listen 8020;
client_max_body_size 500M;
location /api/ {
proxy_pass http://backend:8000/api/;
proxy_set_header Host $host;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
}
location / {
root /usr/share/nginx/html;
try_files $uri /index.html;
}
}