From 6a48f26b80344c1f64ba872a1c42cb491f8bb773 Mon Sep 17 00:00:00 2001 From: lapineige Date: Mon, 5 Feb 2024 17:02:55 +0100 Subject: [PATCH] Limit to 1GB --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 9da03fd..3424ae0 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -5,5 +5,5 @@ location __PATH__/ { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; - client_max_body_size 0M; #Unrestricted uploads size + client_max_body_size 1000M; }