allow uploading

This commit is contained in:
2025-12-12 22:49:00 -08:00
parent 706f277fd3
commit 9ae5cb2e35

View File

@@ -4,6 +4,9 @@ server {
root /usr/share/nginx/html;
index index.html;
# Allow large file uploads (matches API max upload size)
client_max_body_size 100M;
location / {
try_files $uri $uri/ /index.html;
}