Created
June 12, 2012 20:23
-
-
Save kevinejohn/2919911 to your computer and use it in GitHub Desktop.
Generating SSL 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
# Generate private key | |
openssl genrsa -des3 -out private.key 2048 | |
# Remove passphrase | |
openssl rsa -in private.key -out private.nopass.key | |
# Generate CSR | |
openssl req -new -key private.nopass.key -out csr.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment