Mitunter ist es notwendig eine komplette Zertifikatskette in einer Datei (PEM) zu erstellen. Der Aufbau ist wie folgt:

The Private Key – domain_name.key
The Primary Certificate – domain_name.crt
The Intermediate Certificate – intermediate.crt
The Root Certificate – root.crt

—–BEGIN RSA PRIVATE KEY—–
(Your Private Key: domain_name.key)
—–END RSA PRIVATE KEY—–

—–BEGIN CERTIFICATE—–
(Your Primary SSL certificate: domain_name.crt)
—–END CERTIFICATE—–
—–BEGIN CERTIFICATE—–
(Your Intermediate certificate: intermediate.crt)
—–END CERTIFICATE—–
—–BEGIN CERTIFICATE—–
(Your Root certificate: root.crt)
—–END CERTIFICATE—–

In diesem Aufbau die einzelnen Inhalte in eine Datei (meine-domain.pem) speichern und verwenden.