Skip to content

Instantly share code, notes, and snippets.

@genediazjr
Last active April 14, 2016 08:35
Show Gist options
  • Save genediazjr/0acdf573cf711b8f347a to your computer and use it in GitHub Desktop.
Save genediazjr/0acdf573cf711b8f347a to your computer and use it in GitHub Desktop.
Convert Comodo Positivessl to cer and pem
# generate OpenSSL CSR here
# https://www.digicert.com/easy-csr/openssl.htm
# to cer
cat COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt > yourdomain.com.cer
# to pem
cat yourdomain.com.crt COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt yourdomain.com.key > yourdomain.com.pem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment