Apache: SSL Certificate generate CSR
August 7th, 2009 by jeremychoneCSR-Generation Instructions
To generate a triple-DES encrypted key pair and a Certificate Signing Request (CSR):
Enter the following commands:
- cd /usr/bin/ (/your path to openssl/)
Enter a passphrase when prompted to. - openssl genrsa -des3 -out <name of your certificate>.key 1024
- openssl req -new -key <name of your certificate>.key -out <name of your certificate>.csr
If you are requesting a Wildcard certificate, please add an asterisk (*) on the left side of the Common Name (e.g., “*.domainnamegoes.com” or “www*.domainnamegoeshere.com”). This will secure all subdomains of the Common Name.
(source: Godaddy’s help)
BTW, Godaddy has the cheapest certificates you can find (with great support).
September 27th, 2009 at 5:41 pm
[...] Get a certificate (Godaddy have the cheapest one, especially for wildcard ones) [...]