diff --git a/src/Identity/Startup.cs b/src/Identity/Startup.cs index 6f6c726b80..9e9c36f303 100644 --- a/src/Identity/Startup.cs +++ b/src/Identity/Startup.cs @@ -87,9 +87,7 @@ namespace Bit.Identity .AddAuthentication() .AddOpenIdConnect("sso", "Single Sign On", options => { - options.Authority = globalSettings.BaseServiceUri.Sso; - options.MetadataAddress = globalSettings.BaseServiceUri.InternalSso + - "/.well-known/openid-configuration"; + options.Authority = globalSettings.BaseServiceUri.InternalSso; options.RequireHttpsMetadata = !Environment.IsDevelopment() && globalSettings.BaseServiceUri.InternalIdentity.StartsWith("https"); options.ClientId = "oidc-identity";