-
-
Save lishuhao/a921f0ea7ae0dc57b423546eac31019e to your computer and use it in GitHub Desktop.
temp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SSLEngine on | |
| # 添加 SSL 协议支持协议,去掉不安全的协议 | |
| SSLProtocol all -SSLv2 -SSLv3 | |
| # 修改加密套件如下 | |
| SSLCipherSuite HIGH:!RC4:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!EXP:+MEDIUM | |
| SSLHonorCipherOrder on | |
| # 证书公钥配置 | |
| SSLCertificateFile D:\phpStudy\Apache\cert\wechat\public.pem | |
| # 证书私钥配置 | |
| SSLCertificateKeyFile D:\phpStudy\Apache\cert\wechat\214560089640022.key | |
| # 证书链配置,如果该属性开头有 '#'字符,请删除掉 | |
| SSLCertificateChainFile D:\phpStudy\Apache\cert\wechat\chain.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment