Created
August 27, 2014 21:00
-
-
Save bandicoot86/985e1ed57e4bbd75c56c to your computer and use it in GitHub Desktop.
Create localhost certificate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| openssl genrsa -out cloueda-key.pem 1024 | |
| openssl req -new -key cloueda-key.pem -out certrequest.csr | |
| --common name localhost | |
| openssl x509 -req -in certrequest.csr -signkey cloueda-key.pem -out cloueda-cert.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment