diff --git a/Engine/Kestrel/Hosting/KestrelServer.cs b/Engine/Kestrel/Hosting/KestrelServer.cs index 36d2634f..2241296f 100644 --- a/Engine/Kestrel/Hosting/KestrelServer.cs +++ b/Engine/Kestrel/Hosting/KestrelServer.cs @@ -100,6 +100,8 @@ private void Configure(WebApplicationBuilder builder) { options.AllowSynchronousIO = true; + options.Limits.MaxRequestBodySize = null; + foreach (var endpoint in Configuration.EndPoints) { if (endpoint.Security != null)