咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

phpStudy环境如何安装SSL证书?

2017-10-20 20:51:30 1287次

phpStudy环境如何安装SSL证书?


phpStudy环境如何安装SSL证书

此配置方法针对非 纯Apache web环境配置SSL证书。文档用比较常用的集成环境phpStudy集成工具做例子,首先请要准备好下列工具。

工具

申请并下载好ssl证书(PEM格式)

phpstudy集成环境下正常运行的网站

避免意外请先备份(复制)好httpd.conf配置文件。

具体步骤

第一步:

修改apache目录下的httpd.conf配置文件

1、#LoadModule ssl_module modules/mod_ssl.so删除行首的配置语句注释符号“#”

2、增加一条引用语句 Include conf/vhostsssl.conf

第二步:

1、在conf文件夹中创建一个vhostsssl.conf配置文件。

2、编辑vhostsssl.conf文件,增加如下内容:

Listen 443
<VirtualHost *:443>
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5
SSLCertificateFile “D:/JspStudy/Apache/conf/ssl/2_www.****.com.crt”
SSLCertificateKeyFile “D:/JspStudy/Apache/conf/ssl/3_www.***.com.key”
SSLCertificateChainFile “D:/JspStudy/Apache/conf/ssl/1_root_bundle.crt”
DocumentRoot “D:JspStudyWWW”
<Directory />
Options +Indexes +FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>

其中

SSLCertificateFile 是指证书公钥

SSLCertificateKeyFile 是指证书私钥

SSLCertificateChainFile 是指根证书

3.phpstudy配置指定路径访问https(仅供参考)。

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} /homework
RewriteRule^(.*)?$ https://%{SERVER_NAME}$1[L,R]
</IfModule>

4、保存退出,并重启Apache。

首页
最新活动
个人中心