From 5ed98211dced2d9b81be8d8d5d79966059959ca1 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Mon, 16 May 2022 11:53:21 +0200 Subject: [PATCH] feat: new upload limit (500m) --- abra.sh | 2 +- nginx.conf.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/abra.sh b/abra.sh index 8384c05..9fb6f12 100644 --- a/abra.sh +++ b/abra.sh @@ -1,4 +1,4 @@ -export NGINX_CONFIG_VERSION=v1 +export NGINX_CONFIG_VERSION=v2 export APP_ENTRYPOINT_VERSION=v1 secrets() { diff --git a/nginx.conf.tmpl b/nginx.conf.tmpl index 68653d5..48ba738 100644 --- a/nginx.conf.tmpl +++ b/nginx.conf.tmpl @@ -65,7 +65,7 @@ http { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; - client_max_body_size 100M; + client_max_body_size 500M; proxy_pass http://funkwhale-api/; }