Replies: 1 comment
-
Hello there, "IdentityServer": {
"Clients": {
"HelloLinuxAuth": {
"Profile": "IdentityServerSPA"
}
},
"Key": {
"Type": "File",
"FilePath": "/path/to/your/certificate.pfx",
"Password": "your-password-if-applicable"
}
} Also ensure that your IdentityServer configuration in // ...
var cert = new X509Certificate2(Path.Combine(Environment.ContentRootPath, "certificate.pfx"), "your-password");
builder.AddSigningCredential(cert); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have been kicked around. From aspnet github to stackoverflow to identityserver github and back to aspnet..
Why would you roll out a product without documentation and support.. Alice in Wonderland 2020.
Anyone can help at all?
Question
How do I configure Key on Linux?
The following config works fine on Windows. How do I do the same on Linux (CentOS)?
There is no
certificate store
is there?Minimal working example
Beta Was this translation helpful? Give feedback.
All reactions