From 8dfa7d3e17acb7602a14d015b4fe4033f11d0f1f Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 25 Jan 2026 03:09:03 +0000 Subject: [PATCH] Increase nginx client_max_body_size to 50MB for image uploads --- frontend/nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/nginx.conf b/frontend/nginx.conf index 4f650ef..a12f248 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -2,6 +2,9 @@ server { listen 80; server_name localhost; + # Allow large file uploads (50MB) + client_max_body_size 50M; + root /usr/share/nginx/html; index index.html;