ASP.NET configuring kestrel to use HTTPS from Windows certificate store
I'm trying to configure HTTPS for kestrel using certificate from certificate store. Here's what I've achieved so far: appsettings.json { "SSLCertificate": { "Serial": "serialNumberFromCertificateStore" }, "AllowedHosts": "*", "Kestrel": { "Endpoints": { "Http": { "Url": "https://*:8090", "Protocols": "Http1" }, "gRPC": {…