Fixed: Restoring large database backups

Remove Kestrel's default 28.6MB upload limit

[common]
pull/5371/head
ta264 3 years ago
parent 912273b5dd
commit 286b083da4

@ -95,9 +95,10 @@ namespace Radarr.Host
}
})
.ConfigureKestrel(serverOptions =>
{
serverOptions.AllowSynchronousIO = true;
})
{
serverOptions.AllowSynchronousIO = true;
serverOptions.Limits.MaxRequestBodySize = null;
})
.ConfigureLogging(logging =>
{
logging.AddProvider(new NLogLoggerProvider());

Loading…
Cancel
Save