DigiCert Information

The website needs 3 files located as indicted:

 

 

W:\wamp\bin\apache\apache2.4.27\conf\DigiCertCA.crt

W:\wamp\bin\apache\apache2.4.27\conf\www_carriereducation_com.crt

W:\wamp\bin\apache\apache2.4.27\conf\www_carriereducation_com.key

 

Try the batch file named 'updateDigiCert.bat' to make it easy.

 

That is all!

 

 

The file on my server that makes it all work is:

 

W:\wamp\bin\apache\apache2.4.27\conf\extra\httpd-ssl.conf

Below is some of what is in that file. Pay special attention to the lines in RED:

 

## SSL Virtual Host Context

##

 

<VirtualHost *:443>

   ServerName www.carriereducation.com

   ServerAlias carriereducation.com *.carriereducation.com 24.172.12.174

   DocumentRoot "c:/wamp/www/carrier"

   <Directory "c:/wamp/www/carrier/">

     Options +Indexes +Includes +FollowSymLinks +MultiViews

     AllowOverride All

     Require all granted

   </Directory>

   SSLEngine On

   SSLCertificateFile "C:/wamp/bin/apache/apache2.4.27/conf/carriereducation_com.crt"

   SSLCertificateKeyFile "C:/wamp/bin/apache/apache2.4.27/conf/carriereducation_com.key"

   SSLCertificateChainFile "C:/wamp/bin/apache/apache2.4.27/conf/IntermediateCA.crt"

</VirtualHost>

 

<VirtualHost *:443>

 

   ServerName www.historyfinale.com

   ServerAlias historyfinale.com *.historyfinale.com

   DocumentRoot "c:/wamp/www/historyfinale"

   <Directory "c:/wamp/www/historyfinale/">

     Options +Indexes +Includes +FollowSymLinks +MultiViews

     AllowOverride All

     Require all granted

   </Directory>

   SSLEngine On

   SSLCertificateFile "C:/wamp/bin/apache/apache2.4.27/conf/carriereducation_com.crt"

   SSLCertificateKeyFile "C:/wamp/bin/apache/apache2.4.27/conf/carriereducation_com.key"

   SSLCertificateChainFile "C:/wamp/bin/apache/apache2.4.27/conf/IntermediateCA.crt"

</VirtualHost>

 

<VirtualHost *:443>

   ServerName www.carriersnc.com

   ServerAlias carriersnc.com *.carriersnc.com 24.172.12.174

   DocumentRoot "c:/wamp/www/carriersnc"

   <Directory "c:/wamp/www/carriersnc/">

     Options +Indexes +Includes +FollowSymLinks +MultiViews

     AllowOverride All

     Require all granted

   </Directory>

   SSLEngine On

   SSLCertificateFile "C:/wamp/bin/apache/apache2.4.27/conf/carriereducation_com.crt"

   SSLCertificateKeyFile "C:/wamp/bin/apache/apache2.4.27/conf/carriereducation_com.key"

   SSLCertificateChainFile "C:/wamp/bin/apache/apache2.4.27/conf/IntermediateCA.crt"

</VirtualHost>

 

#<VirtualHost _default_:443>

#<VirtualHost *:443>

 

#   General setup for the virtual host

#DocumentRoot "C:/wamp/www/"

#ServerName www.carriereducation.com

#ServerAdmin admin@example.com

#ErrorLog "C:/wamp/logs/error.log"

#TransferLog "C:/wamp/logs/access.log"