mirror of
https://github.com/bitwarden/server.git
synced 2025-05-29 23:34:53 -05:00
allow long urls on admin
This commit is contained in:
parent
5bd43478c7
commit
b99f6cdbc1
@ -11,6 +11,10 @@ namespace Bit.Admin
|
|||||||
{
|
{
|
||||||
WebHost
|
WebHost
|
||||||
.CreateDefaultBuilder(args)
|
.CreateDefaultBuilder(args)
|
||||||
|
.ConfigureKestrel(o =>
|
||||||
|
{
|
||||||
|
o.Limits.MaxRequestLineSize = 20_000;
|
||||||
|
})
|
||||||
.UseStartup<Startup>()
|
.UseStartup<Startup>()
|
||||||
.ConfigureLogging((hostingContext, logging) =>
|
.ConfigureLogging((hostingContext, logging) =>
|
||||||
logging.AddSerilog(hostingContext, e =>
|
logging.AddSerilog(hostingContext, e =>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user