From 22d4625071d0fe1c1b0d057ac6f8941510deccc8 Mon Sep 17 00:00:00 2001 From: evazion Date: Sun, 22 Sep 2019 20:14:44 -0500 Subject: [PATCH] Fix #4173: Fix inconsistent max upload size. --- script/install/nginx/conf.d/common.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/install/nginx/conf.d/common.conf b/script/install/nginx/conf.d/common.conf index fde1b08b7..677a14da7 100644 --- a/script/install/nginx/conf.d/common.conf +++ b/script/install/nginx/conf.d/common.conf @@ -14,7 +14,7 @@ index index.html; access_log off; error_log /var/www/danbooru/shared/log/server.error.log; try_files $uri/index.html $uri.html $uri @app; -client_max_body_size 30m; +client_max_body_size 35m; error_page 503 @maintenance; error_page 404 /404.html; error_page 500 502 503 504 /500.html;