phpstudy 2016版 如何搭建https站点
Posted 1688源码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phpstudy 2016版 如何搭建https站点相关的知识,希望对你有一定的参考价值。
php扩展 php_openssl前打钩
然后打开vhosts.conf添加以下代码(红色字体记得删除)
Listen 443
<VirtualHost *:443>
DocumentRoot "D:\phpStudy\WWW\nihao" 备注:你的网站根目录
ServerName www.nihao.com 备注:你的域名
ServerAlias nihao.com 备注:你的域名
SSLEngine on
SSLProtocol TLSv1 TLSv1.1 TLSv1.2
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5
SSLCertificateFile "D:\phpStudy\Apache\conf\ssl\2_www.xinyunsw.com.crt" 备注:你的证书
SSLCertificateKeyFile "D:\phpStudy\Apache\conf\ssl\3_www.xinyunsw.com.key" 备注:你的key
SSLCertificateChainFile "D:\phpStudy\Apache\conf\ssl\1_root_bundle.crt" 备注:你的证书
<Directory "D:\phpStudy\WWW\nihao"> 备注:你的网站根目录
Options +Indexes +FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
喜欢的话,点个赞哈
以上是关于phpstudy 2016版 如何搭建https站点的主要内容,如果未能解决你的问题,请参考以下文章
用phpstudy 2016搭建环境访问thinkphp出现403 急!!!