mirror of
https://github.com/bitwarden/server.git
synced 2024-12-03 14:03:33 +01:00
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using Bit.Core.Utilities;
|
|
using Serilog.Events;
|
|
|
|
namespace Bit.Admin;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Host
|
|
.CreateDefaultBuilder(args)
|
|
.ConfigureCustomAppConfiguration(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.ConfigureKestrel(o =>
|
|
{
|
|
o.Limits.MaxRequestLineSize = 20_000;
|
|
});
|
|
webBuilder.UseStartup<Startup>();
|
|
webBuilder.ConfigureLogging((hostingContext, logging) =>
|
|
logging.AddSerilog(hostingContext, e =>
|
|
{
|
|
var context = e.Properties["SourceContext"].ToString();
|
|
if (e.Properties.ContainsKey("RequestPath") &&
|
|
!string.IsNullOrWhiteSpace(e.Properties["RequestPath"]?.ToString()) &&
|
|
(context.Contains(".Server.Kestrel") || context.Contains(".Core.IISHttpServer")))
|
|
{
|
|
return false;
|
|
}
|
|
return e.Level >= LogEventLevel.Error;
|
|
}));
|
|
})
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|