Generate Self-signed SSL Certificate
・3 min read
Using HTTPS for your web application is a no-brainer, but sometimes it is not intuitively clear on how to get started on using SSL for your website. I’m going to be going over step-by-step on generating a self-signed certficate and testing it out on a Node.js web server.
Generating Private Key First let’s generate a private key. The private key is used to decrypt the data encrypted by the public key.
Read more...