How Can We Help?

How do I create my own bundle file from CRT files? 

You are here:

How do I create my own bundle file from CRT files? 

Answer: You can do this with your preferred text editor or from the command line.

Example:

# Root CA certificate - AddTrustExternalCARoot.crt
# Intermediate CA - Certificate 1 - SectigoRSAAddTrustCA.crt OR SectigoECCAddTrustCA.crt
# Intermediate CA - Certificate 2 - SectigoRSADomain / Organization / ExtendedvalidationSecureServerCA.crt OR SectigoRSAECCDomain / Organization / ExtendedvalidationSecureServerCA.crt
# Intermediate CA - Certificate 3 - SectigoSHA256SecureServerCA.crt
# Your SSL certificate - yourDomain.crt

Note: You do not need an SSL certificate for this exercise.

GUI Text Editor

1. Öffnen Sie Alle Dateien in einem Texteditor. (Denken Sie daran, nicht Ihr Domain-Zertifikat.)
2. Erstellen Sie eine neue leere Textdatei.
3. Kopieren Sie den Inhalt aller Dateien in umgekehrter Reihenfolge und fügen Sie ihn in die neue Datei ein.
Beispiel: Intermediate 3, Intermediate 2, Intermediate 1, Root Certificate.
4. Speichern Sie die neu erstellte Datei unter dem Namen «yourDomain.ca-bundle».

Command Line

Linux or UNIX-like Operating Systems:
— cat SectigoRSAAddTrustCA.crt SectigoRSADomain/Organization/ExtendedvalidationSecureServerCA.crt AddTrustExternalCARoot.crt > yourDomain.ca-bundle

or

— cat SectigoSHA256SecureServerCA.crt AddTrustExternalCARoot.crt > yourDomain.ca-bundle

Windows or DOS:
- copy SectigoRSAAddTrustCA.crt + SectigoRSADomain / Organization / ExtendedvalidationSecureServerCA.crt + AddTrustExternalCARoot.crt yourDomain.ca-bundle

or

- copy SectigoSHA256SecureServerCA.crt + AddTrustExternalCARoot.crt yourDomain.ca-bundle

Hinweis: ‹yourDomain.ca-bundle› ist nur ein Platzhalter-Dateiname. Sie können es so nennen, wie Sie wollen.

Table of Contents