标签:
修改httpd.conf
Listen 443
LoadModule ssl_module modules/mod_ssl.so Include conf/extra/httpd-ssl.conf #去掉上面两行前的"#"
<VirtualHost *:443> DocumentRoot "D:\phpStudy\WWW" ServerName wwlsz.cn SSLEngine on SSLCertificateFile "D:\webSslKey\2_wwxx.cn.crt" SSLCertificateKeyFile "D:\webSslKey\3_wwxx.cn.key" #SSLCertificateChainFile "D:\webSslKey\1_root_bundle.crt" </VirtualHost> #<Directory "D:\phpStudy\WWW"/> # Options Indexes FollowSymLinks Includes ExecCGI # AllowOverride All # Order allow,deny # Allow from all # Require all granted #</Directory>
标签:
原文地址:http://www.cnblogs.com/rwxwsblog/p/5565662.html