From 19335d44f1eb757503b5b614ea3866960b21cae6 Mon Sep 17 00:00:00 2001 From: lapineige Date: Mon, 5 Feb 2024 16:58:45 +0100 Subject: [PATCH] increase upload size (no limit) --- conf/nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 270f18a..9da03fd 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -4,4 +4,6 @@ location __PATH__/ { proxy_pass http://127.0.0.1:__PORT_API__; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; + + client_max_body_size 0M; #Unrestricted uploads size }