Sysadmin:ImportantInfo:SSLcerts
(Redirected from Sysadmin:Generating SSL certificates)
- GTECyberTrustGlobalRoot.crt - The root cert (SSLCertificateFile)
- ComodoSecurityServicesCA.crt - The Intermediate cert (SSLCACertificateFile), I think this might also be a chain cert as well.
- STAR_earlham_edu.crt - Our Public key cert (SSLCertificateFile)
- newwildcard.earlham.edu.key - Our private key (SSLCertificateKeyFile)
Through CACert
- Generate a key:
openssl genrsa -des3 -out server.keyencrypted 1024
- Generate a certificate request:
openssl req -new -key server.key -out server.csr
- Login to CACert, and request a new certificate using server.csr.
- Copy-and-paste generated certificate into server.crt.