Server / Deploying a server for HTTPS |
You must configure Apache to support HTTPS by adding the required modules. Please refer to the Apache Web server documentation for more information.
For the Apache 1.3 manual, go to http://httpd.apache.org/docs/1.3.
For the Apache 2.0 manual, go to http://httpd.apache.org/docs/2.0/.
Once the Apache Web server supports HTTPS, you must change or add the following directives to the apache configuration file:
Set the Apache Web server Certificate Authority List directive created in Step 4 :
SSLCACertificateFile D:/Apache-Server/conf/ssl/ServerCAList.pem
Set the Apache Web server Certificate and associated private key directives created in Step 2 :
SSLCertificateFile D:/Apache-Server/conf/ssl/MyServer.crt
SSLCertificateKeyFile D:/Apache-Server/conf/ssl/MyServer.pem
Require the Apache Web server to verify the validity of all client certificates:
SSLVerifyClient require