From 0892c05321d9ee153156febf3480a44b39132181 Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Thu, 26 Jun 2025 19:19:24 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D(compose)=20Increase=20attachment?= =?UTF-8?q?=20upload=20size=20to=2010=20MB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mostly give this as an example how a person deploying this knows which knob to turn. Signed-off-by: Luca Weiss --- docker/files/production/etc/nginx/conf.d/default.conf.template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/files/production/etc/nginx/conf.d/default.conf.template b/docker/files/production/etc/nginx/conf.d/default.conf.template index 3d4a866f..d1c4a8e3 100644 --- a/docker/files/production/etc/nginx/conf.d/default.conf.template +++ b/docker/files/production/etc/nginx/conf.d/default.conf.template @@ -11,6 +11,9 @@ server { server_name localhost; charset utf-8; + # increase max upload size + client_max_body_size 10m; + # Disables server version feedback on pages and in headers server_tokens off;