From 39df8611e179e59fc95e68cd2bfc82d2b488d75d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 28 Aug 2020 20:36:02 -0400 Subject: [PATCH] swap around sso service uris --- src/Identity/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Identity/Startup.cs b/src/Identity/Startup.cs index e1fb6c5b45..2bc7308339 100644 --- a/src/Identity/Startup.cs +++ b/src/Identity/Startup.cs @@ -85,7 +85,7 @@ namespace Bit.Identity .AddAuthentication() .AddOpenIdConnect("sso", "Single Sign On", options => { - options.Authority = globalSettings.BaseServiceUri.InternalSso; + options.Authority = globalSettings.BaseServiceUri.Identity; options.RequireHttpsMetadata = !Environment.IsDevelopment() && globalSettings.BaseServiceUri.InternalIdentity.StartsWith("https"); options.ClientId = "oidc-identity";