From a59b2f7aabcbd80fb326303641bbda63cb7b49f4 Mon Sep 17 00:00:00 2001 From: Robles Rodolphe Date: Wed, 17 Jun 2020 17:58:24 +0200 Subject: [PATCH] add an increase size limit in nginx.conf --- conf/nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 8328b41..50e50e6 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -22,6 +22,9 @@ location ~ [^/]\.php(/|$) { } # PHP configuration end + # Increase size limit + client_max_body_size 2M; + # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; } \ No newline at end of file