PhpStudy环境如何安装SSL证书
最后更新于:2019-05-25 17:33:33
第一步:
修改 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
文件,增加如下内容:
<VirtualHost *:443> 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” <Directory "D:\phpStudy\WWW"> Options +Indexes +FollowSymLinks +ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted </Directory> </VirtualHost>
3.phpstudy配置指定路径访问https(仅供参考)。
RewriteEngine on RewriteCond %{REQUEST_URI} /homework RewriteRule^(.*)?$ https://%{SERVER_NAME}$1[L,R]
4、保存退出,并重启Apache, 若有报错或者无法正常启动,请看错误日志。