From f05cf53b85a3099b9933aaca25b3ddd673d4e3dc Mon Sep 17 00:00:00 2001 From: qiaoxinjiu Date: Mon, 18 May 2026 11:28:47 +0800 Subject: [PATCH] =?UTF-8?q?chore(nginx):=20=E6=8F=90=E9=AB=98=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0=E8=AF=B7=E6=B1=82=E4=BD=93=E5=A4=A7=E5=B0=8F=E4=B8=8A?= =?UTF-8?q?=E9=99=90=E8=87=B3=20100m?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 支持文档等大文件上传场景。 Co-authored-by: Cursor --- nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx.conf b/nginx.conf index c3ec91f..02860c4 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,6 +1,8 @@ server { listen 80; server_name localhost; + + client_max_body_size 100m; root /usr/share/nginx/html; index index.html; -- 2.49.1