From 6ba047d2a525bdc77a33a33750e52503143391f1 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Sun, 1 Dec 2024 09:52:34 -0500 Subject: [PATCH] Increase client_max_body_size to 100M in nginx configuration --- backend/nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/nginx.conf b/backend/nginx.conf index 7e123c0..a58fce5 100644 --- a/backend/nginx.conf +++ b/backend/nginx.conf @@ -10,6 +10,8 @@ http { sendfile on; keepalive_timeout 65; + client_max_body_size 100M; + upstream django { server server:8000; # Use the internal Docker networking }