1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-28 14:54:50 -05:00

allow long urls on admin

This commit is contained in:
Kyle Spearrin 2019-10-01 08:57:56 -04:00
parent 5bd43478c7
commit b99f6cdbc1

View File

@ -11,6 +11,10 @@ namespace Bit.Admin
{
WebHost
.CreateDefaultBuilder(args)
.ConfigureKestrel(o =>
{
o.Limits.MaxRequestLineSize = 20_000;
})
.UseStartup<Startup>()
.ConfigureLogging((hostingContext, logging) =>
logging.AddSerilog(hostingContext, e =>