Apache配置https启动不了的解决办法
Listen 443<VirtualHost *:443>
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3//去除不安全协议的
SSLCipherSuite HIGH:MEDIUM:!aNULL:!
SSLCertificateFile "C:/phpStudy/Apache/conf/ssl/2_www.weiduweilan.cn.crt"//证书公钥
SSLCertificateKeyFile "C:/phpStudy/Apache/conf/ssl/3_www.weiduweilan.cn.key"//证书私钥
SSLCertificateChainFile "C:/phpStudy/Apache/conf/ssl/1_root_bundle.crt" //根证书
DocumentRoot"C:\phpStudy\WWW\Zerg\public"
<Directory />
Options +Indexes +FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
页:
[1]