久久青草国产成人成人片_风流少妇按摩来高潮_亚洲欧美日韩成人高清在线一区_久久久久久伊人高潮影院_国产一区二区三区精华液_亚洲第一天堂无码专区_精品国产第一国产综合精品_欧美综合自拍亚洲综合图片区

phpStudy環(huán)境如何安裝SSL證書?

第一步:修改apache目錄下的httpd.conf配置文件

1、#LoadModule ssl_module modules/mod_ssl.so刪除行首的配置語句注釋符號“#”

2、增加一條引用語句 Include conf/vhost-ssl.conf

第二步:

1、在conf文件夾中創(chuàng)建一個vhost-ssl.conf配置文件。

2、編輯vhost-ssl.conf文件,增加如下內(nèi)容:

Listen 443 
SSLEngine on 
SSLProtocol all -SSLv2 -SSLv3 
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5 
SSLCertificateFile “D:\phpStudy\Apache\conf\ssl\www.22.cn.crt” //服務(wù)器證書 
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, 若有報錯或者無法正常啟動,請看錯誤日志。