From 9ae5cb2e359c2ac41c944ccbe12b0528ba44540a Mon Sep 17 00:00:00 2001 From: Scott Register Date: Fri, 12 Dec 2025 22:49:00 -0800 Subject: [PATCH] allow uploading --- web/nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/nginx.conf b/web/nginx.conf index 9bd8495..9c5140b 100644 --- a/web/nginx.conf +++ b/web/nginx.conf @@ -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; }