Skip to content

Instantly share code, notes, and snippets.

@fzankl
Created January 24, 2021 09:18
Embed
What would you like to do?
Certificate mapping in ASP.NET Core
{
"Kestrel": {
"Endpoints": {
"gRPC": {
"Url": "https://*:5001",
"Protocols": "Http2",
"Certificate": {
"Path": "<path to .pfx file>",
"Password": "<certificate password>"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment