|
|
@ -150,12 +150,12 @@ public class WebPeisHttpApiHostModule : AbpModule |
|
|
|
|
|
|
|
|
context.Services.Configure<IISServerOptions>(options => |
|
|
context.Services.Configure<IISServerOptions>(options => |
|
|
{ |
|
|
{ |
|
|
options.MaxRequestBodySize = 52428800; // 设置为null表示无限制,慎用
|
|
|
|
|
|
|
|
|
options.MaxRequestBodySize = 524288000; // 设置为null表示无限制,慎用
|
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
context.Services.Configure<KestrelServerOptions>(options => |
|
|
context.Services.Configure<KestrelServerOptions>(options => |
|
|
{ |
|
|
{ |
|
|
options.Limits.MaxRequestBodySize = 52428800; // 设置为null表示无限制,慎用
|
|
|
|
|
|
|
|
|
options.Limits.MaxRequestBodySize = 524288000; // 设置为null表示无限制,慎用
|
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
//Configure<JsonOptions>(x =>
|
|
|
//Configure<JsonOptions>(x =>
|
|
|
|