Created
August 7, 2012 06:41
-
-
Save heapwolf/3282427 to your computer and use it in GitHub Desktop.
tls/cert
This file contains 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 key.pem | |
openssl req -new -key key.pem -out csr.pem | |
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem | |
-out cert.pem | |
rm csr.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment