phpStudy环境如何安装SSL证书? |
第一步: 修改apache目录下的httpd.conf配置文件 1、#LoadModule ssl_module modules/mod_ssl.so删除行首的配置语句注释符号“#” 2、增加一条引用语句 Include conf/vhost-ssl.conf 第二步: 1、在conf文件夹中创建一个vhost-ssl.conf配置文件。 2、编辑vhost-ssl.conf文件,增加如下内容: Listen 443 SSLEngine on SSLProtocol all -SSLv2 -SSLv3 SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5 SSLCertificateFile “D:\phpStudy\Apache\conf\ssl\www.niaoyundemo.com” //服务器证书 SSLCertificateKeyFile “D:\phpStudy\Apache\conf\ssl\private.key” //证书私钥 SSLCertificateChainFile “D:\phpStudy\Apache\conf\ssl\ca.crt” //根证书 DocumentRoot “D:\phpStudy\WWW” Options +Indexes +FollowSymLinks +ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted 3.phpstudy配置指定路径访问https(仅供参考)。 RewriteEngine on RewriteCond %{REQUEST_URI} /homework RewriteRule^(.*)?$ https://%{SERVER_NAME}$1[L,R] 4、保存退出,并重启Apache, 若有报错或者无法正常启动,请看错误日志。 |