I have a .Net Core application whose cert expired which is currently being hosted directly on IIS. We changed the cert on the server, before I was accessing the cert on C drive but we've since installed it on the local machine in the cert store.
I'm trying to access the Wildcard certificate in the store through the appsettings.json. However I'm still running into a HTTP Error 500.30 - ANCM In-Process Start Failure
.
From the windows logs I'm seeing:
'Invalid certificate store location 'Personal'
Currently I have this:
"IdentityServer": {
"Clients": {
"Dashboard": {
"Profile": "IdentityServerSPA"
},
},
"Key": {
"Type": "Store",
"StoreName": "LocalComputer",
"StoreLocation": "Personal",
"Name": "CN=Wildcard"
}
Am I accessing the certificate the right way? Or is there something else I need to do?