From 41486c940c8a2703c84cff4e2913fd2f54f0f648 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Tue, 25 Feb 2025 12:05:34 +0100 Subject: [PATCH] Update max nginx upload filesize to 25MB (#613) --- nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx.conf b/nginx.conf index 704e4c0a3..681d54731 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,6 +3,8 @@ events { } http { + client_max_body_size 25M; + upstream client { server client:3000; }