Creating a .pem with the Entire SSL Certificate Trust Chain STEP 1: Log into your Sectigo Management Account and download your Intermediate (SectigoRSA.crt), Root (TrustedRoot.crt), and Primary Certificates (your_domain_name.crt). STEP 2: Open a text editor (such as wordpad or notepad) and paste the entire body of each certificate into one text file in the following order:
The Primary Certificate - your_domain_name.crt
The Intermediate Certificate - SectigoRSA.crt
The Root Certificate - USERTrustRSACertificationAuthorityCARoot.crt
Make sure to include the beginning and end tags on each certificate. The result should look like this:
-----BEGIN CERTIFICATE-----
(Your Primary SSL certificate: your_domain_name.crt)
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
(Your Intermediate certificate: SectigoRSA.crt)
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
(Your Root certificate: USERTrustRSACertificationAuthorityCARoot.crt)
-----END CERTIFICATE-----
Creating a .pem with the Server and Intermediate Certificates STEP 1: Log into your Sectigo Management Account and download your Intermediate (SectigoRSA.crt) and Primary Certificates (your_domain_name.crt). STEP 2: Open a text editor (such as wordpad or notpad) and paste the entire body of each certificate into one text file in the following order:
The Primary Certificate - your_domain_name.crt
The Intermediate Certificate - SectigoRSA.crt
Make sure to include the beginning and end tags on each certificate. The result should look like this:
-----BEGIN CERTIFICATE----- (Your Primary SSL certificate: your_domain_name.crt) -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- (Your Intermediate certificate: SectigoRSA.crt) -----END CERTIFICATE-----
Creating a .pem with the Private Key and Entire Trust Chain STEP 1: Log into your Sectigo Management Account and download your Intermediate (SectigoRSA.crt) and Primary Certificates (your_domain_name.crt). STEP 2: Open a text editor (such as wordpad or notepad) and paste the entire body of each certificate into one text file in the following order:
The Private Key - your_domain_name.key
The Primary Certificate - your_domain_name.crt
The Intermediate Certificate - SectigoRSA.crt
The Root Certificate - USERTrustRSACertificationAuthorityCARoot.crt
Make sure to include the beginning and end tags on each certificate. The result should look like this:
-----BEGIN RSA PRIVATE KEY----- (Your Private Key: your_domain_name.key) -----END RSA PRIVATE KEY----- -----BEGIN CERTIFICATE----- (Your Primary SSL certificate: your_domain_name.crt) -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- (Your Intermediate certificate: SectigoRSA.crt) -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- (Your Root certificate: USERTrustRSACertificationAuthorityCARoot.crt) -----END CERTIFICATE-----
Commentaires