From cedbda5bd1ff5300726ecb18a33211dd8cbe1287 Mon Sep 17 00:00:00 2001 From: Matthew DeAbreu Date: Mon, 31 Jul 2023 09:30:17 -0700 Subject: [PATCH] increase upload size --- conf/nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 90fbc09..9b96631 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -10,6 +10,9 @@ location __PATH__/ { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $server_name; + # set max upload size + client_max_body_size 128M; + # Include SSOWAT user panel. # include conf.d/yunohost_panel.conf.inc; }