From 7621eb04880ad71e46a24413a22d09233be1a8c8 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 2 Feb 2021 11:46:10 +0000 Subject: [PATCH] Allow up to 16MB for /upload endpoint (default was 1MB) --- nginx/snikket-common.template | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx/snikket-common.template b/nginx/snikket-common.template index 9b22e2f..772c346 100644 --- a/nginx/snikket-common.template +++ b/nginx/snikket-common.template @@ -26,6 +26,7 @@ location /share { location /upload { try_files none @prosody; + client_max_body_size 16M; } location @portal {