From 5a5b9163bfe9b4aab4519bc65ca890527be54fe9 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 28 Aug 2020 21:14:03 -0400 Subject: [PATCH] use internal sso for metadata address --- src/Identity/Startup.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Identity/Startup.cs b/src/Identity/Startup.cs index a1b8673a7b..96f5435c8e 100644 --- a/src/Identity/Startup.cs +++ b/src/Identity/Startup.cs @@ -86,6 +86,7 @@ namespace Bit.Identity .AddOpenIdConnect("sso", "Single Sign On", options => { options.Authority = globalSettings.BaseServiceUri.Sso; + options.MetadataAddress = globalSettings.BaseServiceUri.InternalSso; options.RequireHttpsMetadata = !Environment.IsDevelopment() && globalSettings.BaseServiceUri.InternalIdentity.StartsWith("https"); options.ClientId = "oidc-identity";