You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
2 years ago
|
using System;
|
||
|
using System.Configuration;
|
||
|
using Microsoft.AspNetCore.Builder;
|
||
|
using Microsoft.AspNetCore.Hosting;
|
||
|
using Microsoft.AspNetCore.Server.Kestrel.Core;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Microsoft.Extensions.Logging;
|
||
|
|
||
|
namespace Win.Sfs.SettleAccount
|
||
|
{
|
||
|
public class Startup
|
||
|
{
|
||
|
public void ConfigureServices(IServiceCollection services)
|
||
|
{
|
||
|
services.AddApplication<SettleAccountHttpApiHostModule>();
|
||
|
services.Configure<KestrelServerOptions>(options =>
|
||
|
{
|
||
|
// Set the limit to 256 MB
|
||
|
options.Limits.MaxRequestBodySize = 268435456;
|
||
|
});
|
||
|
//上传文件大小限制IIS设置
|
||
|
services.Configure<IISServerOptions>(options =>
|
||
|
{
|
||
|
options.MaxRequestBodySize = 268435456;
|
||
|
options.AllowSynchronousIO = true;
|
||
|
|
||
|
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerFactory loggerFactory)
|
||
|
{
|
||
|
app.InitializeApplication();
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|