I have configured thinktecture Identity Server v3 and an MVC client. Both of them are working perfectly fine till yesterday. When I tried this morning it's not working. I cant remember changing anything after last time I have worked on it yesterday.
Unable to get document from
https://localhost:44306/identity/.well-known/openid-configuration
I cant navigate to this page separately also.
Server configuration:
app.Map("/identity", coreApp =>
{
var factory = InMemoryFactory.Create(
users: Users.Get(),
clients: Clients.Get(),
scopes: Scopes.Get());
var idsrvOptions = new IdentityServerOptions
{
SiteName = "Identity Server",
Factory = factory,
SigningCertificate = Cert.Load(),
CorsPolicy = CorsPolicy.AllowAll ...
Go to the complete details ...