From 02ad300443c8a01e8930f480f6cd36f0badcd61a Mon Sep 17 00:00:00 2001 From: trwnh Date: Sat, 6 Feb 2021 19:30:58 -0600 Subject: [PATCH] increase default upload limit from 1M to 15M --- contrib/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/nginx.conf b/contrib/nginx.conf index ecb90e15f..6d6fd15f8 100644 --- a/contrib/nginx.conf +++ b/contrib/nginx.conf @@ -18,6 +18,7 @@ server { index index.html index.htm index.php; charset utf-8; + client_max_body_size 15M; location / { try_files $uri $uri/ /index.php?$query_string;