Yes, adding the module fixed it, but why am I adding the Identity EFCore module? Because there was no need to add this in other similar projects.
Identity is another project and I manage it in database.
Actually no.
I want IssuerUri to be constant on IdentityServer side. It shouldn't change by domain. Micro-services cannot validate IssuerUri when IssuerUri varies by domain. For this, I close as follows, but I do not want it.
options.TokenValidationParameters = new Microsoft.IdentityModel.Tokens.TokenValidationParameters { ValidateIssuer = false };
I add the following to fix IssuerUri in IdentityServer section. But it's not working.
Configure<IdentityServerOptions>(options => { options.IssuerUri = "mydomain.app"; });
Hi,
AuthServerModule:
Configure<AbpTenantResolveOptions>(options => { options.AddDomainTenantResolver(configuration["App:TenantDomainFormat"]); //{0}.mydomain.com });
Configure<IdentityServerOptions>(options => { options.IssuerUri = configuration["App:SelfUrl"]; //mydomain.com });
I define the IssuerUri as mydomain.com. However, when logged in as turkey.mydomain.com, the issuer changes to turkey.mydomain.com in the .well-known/openid-configuration information.
My problem is on the IdentityServer App (AuthServer) side.
It is already defined in the web client application as you have forwarded in the link.