Menu
picture of tbs certificates
picture of tbs certificates
Certificates
Our products range
Partners
Support
Focus


SSLCertificateChainFile

This directive sets the certification chain returned by Apache during SSL connection. Elle permet de configurer spécifiquement cette chaîne et elle est à privilégier sur SSLCACertificateFile.

This directive has to point at a file. This file must contain the entire certification chain except for the server certificate: the intermediate certificate then the root one.

It can result in:
-----BEGIN CERTIFICATE-----
xxxxxxxxxx the intermediate certificate (that signed yours) xxxxxxxxx
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
xxxxxxxxxx the root certificate (that signed the certificate above) xxxxxxxxx
-----END CERTIFICATE-----
There can be several intermediate certificates before the root. Your server certificate (final entity) does not appear in the certification chain. It is loaded by SSLCertificateFile

In the Apache configuration file you can use this directive in a VirtualHost with:

SSLCertificateChainFile /etc/httpd/conf/ssl.crt/machaine.crt


This directive is compatible with:

This directive is essential to use certification chains that update automatically IE7 under Windows XP.