Steps to Build an SSL Certificate Trust Chain

Steps to Build an SSL Certificate Trust Chain

Why SSL Certificate Trust Chain Is Important?

To ensure your website operates smoothly with HTTPS across all browsers and devices, it's essential to implement an SSL Certificate Trust Chain instead of using just one certificate.

What You Need

  • Intermediate Certificate: This is issued by your SSL/TLS provider.
  • Root Certificate: Typically available for download from your certificate issuer's website.

How to Combine Certificates

Using a text editor, merge your certificates in the following order to create a single file:

-----BEGIN CERTIFICATE-----
(Your SSL Certificate: yourwebsite.crt)
-----END CERTIFICATE-----

-----BEGIN CERTIFICATE-----
(Intermediate Certificate: INTERMEDIATE.crt)
-----END CERTIFICATE-----

-----BEGIN CERTIFICATE-----
(Root Certificate: Root.crt)
-----END CERTIFICATE-----

Save the combined file and integrate it into your server's configuration to complete the setup.


    • Related Articles

    • Using a Custom SSL Certificate on VergeCloud: Secure Your Website with Confidence

      Custom SSL Certificate You can continue utilizing your custom SSL certificate by navigating to the VergeCloud HTTPS Settings. Introduction Custom SSL certificates are essential for securing data transmitted over the internet. With VergeCloud, users ...
    • Setting Up a Free SSL Certificate on VergeCloud: Secure Your Website at No Cost

      VergeCloud SSL Certificate This document explains how to secure your website with a free VergeCloud SSL certificate, which is valid for a duration of 90 days. After this period, you can renew the certificate without incurring any costs. Follow this ...
    • How to Export Chained Certificate from Browser?

      Exporting a Chained Certificate from Browsers Learn how to obtain a chained SSL certificate using Mozilla Firefox or Google Chrome. Follow these steps for each browser: Mozilla Firefox Open your website in Firefox. Click the lock icon beside the URL ...
    • Setting Up HTTPS Configuration on VergeCloud: Secure Your Website with an SSL Certificate

      HTTPS Configuration with VergeCloud In this section, you'll learn how to manage the connection protocol between users and your website via VergeCloud's CDN edge servers. You can adjust settings related to HTTPS for content delivery, including ...
    • How to Create PEM File?

      PEM File Format Overview PEM, which stands for Privacy Enhanced Mail, is a widely used file format for storing and transferring encrypted data, particularly certificates and cryptographic keys. A file with a .PEM extension serves as a container for ...