From 4e39c8f49625bd65d0abfbf2ff8b9c9845723feb Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Tue, 12 Apr 2022 21:45:03 +0200 Subject: [PATCH] Increase max body size --- nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx.conf b/nginx.conf index 4ffbcce25..cacbc48f0 100644 --- a/nginx.conf +++ b/nginx.conf @@ -7,6 +7,8 @@ server { root /var/www/xhgui/webroot; index index.php; + client_max_body_size 5M; + location / { try_files $uri $uri/ /index.php$is_args$args; }