From 624c00a89338251943214c6bee2c77485febc503 Mon Sep 17 00:00:00 2001 From: Lab-8916100448256 <38373466+Lab-8916100448256@users.noreply.github.com> Date: Tue, 2 Jul 2024 21:55:56 +0200 Subject: [PATCH] Set client_max_body_size to 50 MB --- conf/nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index ecb5289..af28607 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -5,6 +5,8 @@ location __PATH__/ { proxy_set_header Host $host; proxy_pass_header Server; + client_max_body_size 50M; + # be careful, this line doesn't override any proxy_buffering on set in a conf.d/file.conf proxy_buffering off; more_set_headers "X-Frame-Options : ALLOWALL";