From 6899c04cd279ff57d3f6f6be2c1972645eaa556c Mon Sep 17 00:00:00 2001 From: Lab-8916100448256 <38373466+Lab-8916100448256@users.noreply.github.com> Date: Sat, 6 Jul 2024 00:27:30 +0200 Subject: [PATCH] Set client_max_body_size to 50 MB (#210) --- 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";