diff --git a/src/NzbDrone.Host/Bootstrap.cs b/src/NzbDrone.Host/Bootstrap.cs index d4ab88f39..9e18e262f 100644 --- a/src/NzbDrone.Host/Bootstrap.cs +++ b/src/NzbDrone.Host/Bootstrap.cs @@ -12,6 +12,7 @@ using DryIoc.Microsoft.DependencyInjection; using FluentMigrator.Runner.Processors.Postgres; using Microsoft.AspNetCore.DataProtection; using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Http.Features; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; @@ -154,6 +155,11 @@ namespace NzbDrone.Host .ConfigureServices(services => { services.Configure(config.GetSection("Prowlarr:Postgres")); + services.Configure(x => + { + //Double the default multipart body length from 128 MB to 256 MB + x.MultipartBodyLengthLimit = 268435456; + }); }) .ConfigureWebHost(builder => {