mirror of
https://github.com/bitwarden/server
synced 2025-12-26 13:13:24 +00:00
46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using AspNetCoreRateLimit;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Identity;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
CreateHostBuilder(args)
|
|
.Build()
|
|
.Run();
|
|
}
|
|
|
|
public static IHostBuilder CreateHostBuilder(string[] args)
|
|
{
|
|
return Host
|
|
.CreateDefaultBuilder(args)
|
|
.ConfigureCustomAppConfiguration(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
webBuilder.ConfigureLogging((hostingContext, logging) =>
|
|
logging.AddSerilog(hostingContext, (e, globalSettings) =>
|
|
{
|
|
var context = e.Properties["SourceContext"].ToString();
|
|
if (context.Contains(typeof(IpRateLimitMiddleware).FullName))
|
|
{
|
|
return e.Level >= globalSettings.MinLogLevel.IdentitySettings.IpRateLimit;
|
|
}
|
|
|
|
if (context.Contains("Duende.IdentityServer.Validation.TokenValidator") ||
|
|
context.Contains("Duende.IdentityServer.Validation.TokenRequestValidator"))
|
|
{
|
|
return e.Level >= globalSettings.MinLogLevel.IdentitySettings.IdentityToken;
|
|
}
|
|
|
|
return e.Level >= globalSettings.MinLogLevel.IdentitySettings.Default;
|
|
}));
|
|
});
|
|
}
|
|
}
|