How to setup Https on Kestrel
February 12, 2016 by Anuraj
ASP.NET5 ASP.NET Core HTTPS Kestrel
This post is about setup Https on Kestrel. Kestrel is a cross-platform web server based on libuv, a cross-platform asynchronous I/O library. Kestrel is open-source, and you can view the Kestrel source on GitHub. Kestrel is a great option to at least include support for in your ASP.NET 5 projects so that your project can be easily run by developers on any of the supported platforms.
To setup https, first you need SSL certificates, for demo purposes you can create self signed certificates from IIS. (IIS < Server certificates < And select the Create Self Signed certificate. You need to provide friendly name for the certificate, and store. Once it created, you can export the certificate to get the pfx file.
Now you can modify the project.json file to add the reference of Kestrel.Https nuget package.
Now you need to modify the startup file, configure() method to use certificate.
Don’t hard code you’re certificate password in the code, use secrets API instead.
The following method is a word around for 454 defect. It is fixed in RC2.
Now you need to modify the project.json, to change the URL.
You need to remove “dnxcore50” from the frameworks, because Kestrel.Https is not supported in dnxcore. Now you can browse the URL with https.
Happy Programming :)
Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub