From fea507163a45decdbdd2b8166f584fed5d4e5d0d Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Tue, 22 Jan 2019 11:13:02 +0100 Subject: [PATCH] Added missing client_max_body_size in docker proxy template --- deploy/docker.proxy.template | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/docker.proxy.template b/deploy/docker.proxy.template index 812027bfa..c4f89057d 100644 --- a/deploy/docker.proxy.template +++ b/deploy/docker.proxy.template @@ -65,6 +65,7 @@ server { location / { include /etc/nginx/funkwhale_proxy.conf; + client_max_body_size ${NGINX_MAX_BODY_SIZE}; proxy_pass http://fw/; } } -- GitLab