Configuring SSL for Apache Httpd 2.2.x

1. Alter httpd.conf, uncomment 'Include conf/extra/httpd-ssl.conf'

 

 

 

Include conf/extra/httpd-ssl.conf   # uncomment this

 

#uncomment this on windows platform

#LoadModule ssl_module modules/mod_ssl.so

 

 

2. edit conf/extra/httpd-ssl.conf

 

 

<VirtualHost>   

#...

 

SSLCertificateFile "D:/ProgramFiles/Apache2.2/conf/server.crt"

SSLCertificateKeyFile "D:/ProgramFiles/Apache2.2/conf/server.key"

JkMount /* loadbalancer

#...

</VirtualHost> 

 

 

你可能感兴趣的:(apache)