Compare commits

...

1 Commits

Author SHA1 Message Date
Amatsugu 8bdd9edbb0 Increase multi-part body limit
Build and Push Image / build-and-push (push) Successful in 3m52s
2025-12-22 15:55:46 +00:00
+1 -1
View File
@@ -127,7 +127,7 @@ builder.Services.AddHostedService<DebugService>();
builder.Services.Configure<FormOptions>(opt => builder.Services.Configure<FormOptions>(opt =>
{ {
opt.ValueLengthLimit = int.MaxValue; opt.ValueLengthLimit = int.MaxValue;
opt.MultipartBodyLengthLimit = int.MaxValue; opt.MultipartBodyLengthLimit = long.MaxValue;
}); });
var app = builder.Build(); var app = builder.Build();