xampp配置ssl的方法:
1.將ssl證書放到apache下的conf目錄中。
2.打開conf目錄下的httpd.conf文件,找到以下代碼,并將前面的#注釋符去掉,代碼如下:
#LoadModule ssl_module modules/mod_ssl.so
#Include conf/extra/httpd-ssl.conf
3.打開X:\xampp\apache\conf\extra下的httpd-ssl.conf文件,找到以下代碼:
# General setup for the virtual host
DocumentRoot "X:/xampp/htdocs"
ServerName (你的域名):443
ServerAdmin admin@example.com
ErrorLog "X:/xampp/apache/logs/error.log"
TransferLog "X:/xampp/apache/logs/access.log"
# SSL Engine Switch:
# Enable/Disable SSL for this virtual host.
SSLEngine on
將內的地址改為0.0.0.0:443
將ServerName改為你的域名
4.打開httpd-ssl.conf文件,修改證書路徑,例如:
SSLCertificateFile 的注釋去掉,路徑改為2_xxx.crt的存放路徑SSLCertificateKeyFile 的注釋去掉,路徑改為3_xxx.key的存放路徑
SSLCertificateChainFile 的注釋去掉,路徑改為 1_root_bundle.crt的存放路徑
5.將apache服務重啟即可。