From 6ab8ccbe170638b3ddd1ce22c3b07fbaff2fa73a Mon Sep 17 00:00:00 2001 From: Mathieu Oriol Date: Wed, 29 Jan 2025 14:25:39 +0100 Subject: [PATCH] Increase size limit of body in nginx.conf This should hopefully fix the problem of image sending --- proxy/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/nginx.conf b/proxy/nginx.conf index a36ecfe..a9b309a 100644 --- a/proxy/nginx.conf +++ b/proxy/nginx.conf @@ -6,6 +6,7 @@ events { http { server { listen 80; + client_max_body_size 15M; location / { proxy_pass http://front:3000/; proxy_set_header Host $host;