From f84cb5b0e0b37f56551b0e93a93aeaa3c5d5eefc Mon Sep 17 00:00:00 2001 From: Ludek Date: Sat, 21 Mar 2020 19:08:37 +0100 Subject: [PATCH] limit update (#57) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Luděk Nový --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index ef2ec8fa..ff4d1c3f 100644 --- a/nginx.conf +++ b/nginx.conf @@ -5,13 +5,13 @@ events { } http { - client_max_body_size 500M; + client_max_body_size 2048M; server { listen 80; server_name localhost; - client_max_body_size 500M; + client_max_body_size 2048M; root /usr/share/nginx/html; index index.html index.htm; include /etc/nginx/mime.types;