From a3d9d57d6de98ac34726820ade9423ccec8c9617 Mon Sep 17 00:00:00 2001 From: "aditya.chandel" <> Date: Wed, 19 Mar 2025 04:15:16 -0600 Subject: [PATCH] Set client_max_body_size to 100M --- nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx.conf b/nginx.conf index 58078a8b1..0595312a8 100644 --- a/nginx.conf +++ b/nginx.conf @@ -5,6 +5,9 @@ http { # include the default mime.types to map file extensions to MIME types include /etc/nginx/mime.types; + # Set max request body size to 100MB (adjust as needed) + client_max_body_size 100M; + server { listen 6060; # Listen on port 6060 for both API and UI