From f12494ac758cbbf6318d09ecb977bf34598cad39 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Thu, 10 Oct 2024 15:14:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=A4=A7=E8=AF=B7=E6=B1=82=E9=99=90?= =?UTF-8?q?=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Shentun.WebPeis.HttpApi.Host/WebPeisHttpApiHostModule.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Shentun.WebPeis.HttpApi.Host/WebPeisHttpApiHostModule.cs b/src/Shentun.WebPeis.HttpApi.Host/WebPeisHttpApiHostModule.cs index 4cd24e7..a68dacf 100644 --- a/src/Shentun.WebPeis.HttpApi.Host/WebPeisHttpApiHostModule.cs +++ b/src/Shentun.WebPeis.HttpApi.Host/WebPeisHttpApiHostModule.cs @@ -150,12 +150,12 @@ public class WebPeisHttpApiHostModule : AbpModule context.Services.Configure(options => { - options.MaxRequestBodySize = 52428800; // 设置为null表示无限制,慎用 + options.MaxRequestBodySize = 524288000; // 设置为null表示无限制,慎用 }); context.Services.Configure(options => { - options.Limits.MaxRequestBodySize = 52428800; // 设置为null表示无限制,慎用 + options.Limits.MaxRequestBodySize = 524288000; // 设置为null表示无限制,慎用 }); //Configure(x =>