mirror of https://github.com/ivanch/tcc.git
34 lines
948 B
C#
34 lines
948 B
C#
using Microsoft.AspNetCore.Server.Kestrel.Core;
|
|
using Microsoft.Extensions.FileProviders;
|
|
using TCC.Services;
|
|
|
|
namespace TCC
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddScoped<ImageService>();
|
|
|
|
builder.Services.AddControllers();
|
|
|
|
builder.Services.Configure<KestrelServerOptions>(options =>
|
|
{
|
|
options.Limits.MaxRequestBodySize = int.MaxValue; // if don't set default value is: 30 MB
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
app.UseStaticFiles(new StaticFileOptions
|
|
{
|
|
FileProvider = new PhysicalFileProvider(Path.Combine(builder.Environment.ContentRootPath, "static")),
|
|
RequestPath = "/static"
|
|
});
|
|
app.MapControllers();
|
|
|
|
app.Run();
|
|
}
|
|
}
|
|
} |