From 780b6658c47f83ff54c08d61d0e04d1cba2eff38 Mon Sep 17 00:00:00 2001 From: louis <869322496@qq.com> Date: Thu, 11 Apr 2024 09:05:46 +0800 Subject: [PATCH] feat: nginx file upload limit set to 50m --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 72a3c2f..00fcd3a 100644 --- a/nginx.conf +++ b/nginx.conf @@ -13,7 +13,7 @@ events { http { include /etc/nginx/mime.types; default_type application/octet-stream; - client_max_body_size 40m; + client_max_body_size 50m; map $time_iso8601 $logdate { '~^(?\d{4}-\d{2}-\d{2})' $ymd; default 'date-not-found';