Member-only story
Enable HTTPS in LOCALHOST with OpenSSL for a NodeJS app🤓(with video)

For different purposes, we might need to enable HTTPS in our LOCALHOST environment. In this video, I have tried to show how we can do that in few minutes. 🎯
Enjoy 🌸
/// Commands to generate certificate with OpenSSL ///
openssl genrsa -out key.pemopenssl req -new -key key.pem -out csr.pemopenssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pemrm csr.pem
SUBSCRIBE to YouTube Channel — https://www.youtube.com/c/TheDestroDevShow?sub_confirmation=1
LIKE FB Page — https://www.facebook.com/the.destro.dev.show/
Follow on Twitter — https://twitter.com/destro_mas
Follow on DEV — https://dev.to/destro_mas
Made with ❤️ in Berlin!
Originally published at https://dev.to on December 12, 2020.