AspNetCore Identity - Can not go to home page

Hello,

I have designed a small app with the RADZEN Studio and added AspNetCore Identity as security. I have configured KESTREL the following way:

"AllowedHosts": "*",
"Kestrel":
{
  "Endpoints": {
    "Http": {
      "Url": "https://*:8443"
    },
    "gRPC": {
      "Url": "https://*:51003"
    }
  },
  "Certificates": {
    "Default": {
      "Path": "D:\\TestMe\\TestMe2.pfx",
      "Password": "xxxxxx",
      "AllowInvalid": true
    }
  }        
}

This working on my development fine, but in production I will stay in the login screen. I have added a logging to the account controller and I see that the signInManger returns succeeded.

Why does the app not forward to the home page after successful login?

The developer certificate is self-signed - that's probably why. The code which gets the authentication state probably fails because of that. Check the GetAuthenticationStateAsync method of SecurityService.