Cette publication est également disponible en :
Français (French)
Step 1
Copy your SSL certificate file and certificate bundle file to your Apache server (this server should already contain the key file that was automatically generated when you issued your certificate request).
Step 2
Find the relevant directives in the file httpd.conf or ssl.conf (which file to use depends on your Apache configuration). If some directives are commented out, remove the # character at the beginning of the relevant line Set the values of these directives with the absolute path and filename of the relevant file, depending on your version of Apache :
| Apache version < 2.4.8 | |
| Directive | Path to enter |
| SSLCertificateFile | Certificate file path |
| SSLCertificateKeyFile | Key file path |
| SSLCertificateChainFile | Intermediate bundle path |
| Apache version 2.4.8+ | |
| Directive | Path to enter |
| SSLCertificateFile | Certificate file path |
| SSLCertificateKeyFile | Key file path |
| SSLCACertificatePath | Intermediate bundle path |
Step 3
Save your configuration file and restart Apache.
Step 4
How to restart your Web server
The procedure for restarting Apache depends on the operating system you’re using. On UNIX-type platforms (Linux, Solaris, HP-UX, etc.), you’ll generally need to run a script to stop and restart the httpd daemon. Please consult your operating system’s online documentation or the Apache documentation.
Your SSL certificate is now installed