How to install an Intermediate CA cert in Apache?

Published: 1 August, 2018
Share:

Environment

  • All Red Hat Enterprise Linux versions
  • Apache httpd - all versions

Issue

  • You need to install an Intermediate CA certificate. How to do it in Apache?

Resolution

Standard one-way HTTPS

  1. Backup up all involved files before manipulating them.
  2. Locate the Apache configuration file where your Virtual Host is configured.
  3. Locate the line "SSLCertificateChainFile". For example:
SSLCertificateChainFile /etc/pki/tls/certs/chain.crt
  1. Copy and paste the contents of the Intermediate CA into your CA chain file (append to chain.crt ).
  2. Restart Apache httpd:
# service httpd restart

Two-way SSL (Client Authentication)

  1. Backup up all involved files before manipulating them.
  2. Locate the Apache configuration file where your Virtual Host is configured.
  3. Locate the line "SSLCACertificateFile". For example:
SSLCACertificateFile /etc/httpd/conf/ssl.crt/my_ca.crt
  1. Copy and paste the contents of the Intermediate CA into your CA cert (append to my_ca.crt ).
  2. Restart Apache httpd:
# service httpd restart

0 Comments

Leave us your comments

Related Information

Docker 基础

Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的镜像中,然后发布...