diff --git a/src/Api/Startup.cs b/src/Api/Startup.cs index 3adbc3e762..74978537c3 100644 --- a/src/Api/Startup.cs +++ b/src/Api/Startup.cs @@ -44,8 +44,11 @@ namespace Bit.Api // Settings var globalSettings = services.AddGlobalSettingsServices(Configuration); - services.Configure(Configuration.GetSection("IpRateLimitOptions")); - services.Configure(Configuration.GetSection("IpRateLimitPolicies")); + if(!globalSettings.SelfHosted) + { + services.Configure(Configuration.GetSection("IpRateLimitOptions")); + services.Configure(Configuration.GetSection("IpRateLimitPolicies")); + } // Data Protection services.AddCustomDataProtectionServices(Environment, globalSettings); @@ -62,9 +65,12 @@ namespace Bit.Api // Caching services.AddMemoryCache(); - // Rate limiting - services.AddSingleton(); - services.AddSingleton(); + if(!globalSettings.SelfHosted) + { + // Rate limiting + services.AddSingleton(); + services.AddSingleton(); + } // Identity services.AddCustomIdentityServices(globalSettings); @@ -158,8 +164,11 @@ namespace Bit.Api app.UseForwardedHeadersForAzure(); } - // Rate limiting - app.UseMiddleware(); + if(!globalSettings.SelfHosted) + { + // Rate limiting + app.UseMiddleware(); + } // Add static files to the request pipeline. app.UseStaticFiles();