zyh3033 发表于 2017-1-12 08:06:22

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> 
页: [1]
查看完整版本: Configuring SSL for Apache Httpd 2.2.x