http://www.lccee.com/content-57.html

https://www.gworg.com/ssl/127.html

apach:

LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
LoadModule ssl_module modules/mod_ssl.so
Include conf/extra/httpd-ssl.conf

 

打开 apache 安装目录下 conf/extra/httpd-ssl.conf 文件 (也可能是conf.d/ssl.conf,与操作系统及安装方式有关), 在配置文件中查找以下配置语句:

 

# 添加 SSL 协议支持协议,去掉不安全的协议
SSLProtocol all -SSLv2 -SSLv3
# 修改加密套件如下
SSLCipherSuite HIGH:!RC4:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!EXP:+MEDIUM
SSLHonorCipherOrder on
# 证书公钥配置
SSLCertificateFile cert/public.pem
# 证书私钥配置
SSLCertificateKeyFile cert/214302459620515.key
# 证书链配置,如果该属性开头有 '#'字符,请删除掉
SSLCertificateChainFile cert/chain.pem

 

相关文章:

  • 2021-06-09
  • 2021-05-03
  • 2021-12-13
  • 2021-12-03
  • 2021-12-03
猜你喜欢
  • 2021-04-23
  • 2021-07-23
  • 2021-09-30
  • 2022-12-23
  • 2021-10-02
  • 2021-08-06
  • 2021-09-25
相关资源
相似解决方案