Changing the domain name for AAD auth with openIdConnect for multi node multi geo applications
问题 I am using Asp.Net Core 2.2 and targeting .NET Framework 4.7.2. Ours is a multi cluster, multi node app. We are using Azure AD with OpenId Connect for authenticating the user. Our Startup.cs looks like this : services.Configure<CookiePolicyOptions>(options => { // This lambda determines whether user consent for non-essential cookies is needed for a given request. options.CheckConsentNeeded = context => true; options.MinimumSameSitePolicy = SameSiteMode.None; }); services.AddAuthentication