I have an asp.net core app with IdentityServer4. In production it requires a key.
On Windows Server, I deployed it OK - created a self-signed certificate and added LocalMacine/my as the key location.
How can I do the same on Linux?
appsettings.json config on Windows - need syntax for Linux:
"IdentityServer": {
"Clients": {
"MyDemoApp": {
"Profile": "IdentityServerSPA"
}
},
"Key": {
"Type": "Store",
"StoreName": "My",
"StoreLocation": "LocalMachine",
"Name": "CN=my-demo"
}
},