Created
January 14, 2015 12:43
-
-
Save ravensnowbird/eefb5aac0c2814c21c45 to your computer and use it in GitHub Desktop.
SSL Gist
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 -des3 -out example.com.key 2048 | |
| openssl rsa -in example.com.key -out example.com.key.nopass | |
| openssl req -new -key example.com.key.nopass -out example.com.csr | |
| cat example_com.crt PositiveSSLCA2.crt AddTrustExternalCARoot.crt > example.com.crt | |
| openssl req -new -newkey rsa:2048 -nodes -keyout visit.yourstartuphub.com.key -out visit.yourstartuphub.com.csr | |
| cat AddTrustExternalCARoot.crt COMODORSAAddTrustCA.crt COMODORSADomainValidationSecureServerCA.crt visit_yourstartuphub_com.crt >> visit.yourstartuphub.com.crt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment