修改httpd.conf
- 添加端口监听
Listen 443
- 添加https处理类库
LoadModule ssl_module modules/mod_ssl.so Include conf/extra/httpd-ssl.conf #去掉上面两行前的"#"
- 虚拟主机配置
<VirtualHost *:443> DocumentRoot "D:phpStudyWWW" ServerName wwlsz.cn SSLEngine on SSLCertificateFile "D:webSslKey2_wwxx.cn.crt" SSLCertificateKeyFile "D:webSslKey3_wwxx.cn.key" #SSLCertificateChainFile "D:webSslKey1_root_bundle.crt" </VirtualHost> #<Directory "D:phpStudyWWW"/> # Options Indexes FollowSymLinks Includes ExecCGI # AllowOverride All # Order allow,deny # Allow from all # Require all granted #</Directory>