apache添加对 tls 1.2的支持

作者: wxfeng 分类: linux 发布时间: 2018-12-03 00:00    阅读 1,091 次

http://askubuntu.com/questions/643037/how-to-enable-tls-1-2-in-apache

火狐截图_2016-11-23T14-40-52.390Z.png

使web服务器支持TLS1.2需要的服务器运行环境:

apache对应版本应>=2.2.23;

OpenSSL对应版本应>= 1.0.1


查看apache版本

[root@localhost 桌面]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built:   Jul 18 2016 15:30:14

查看OpenSSL版本

[root@localhost 桌面]# openssl version
OpenSSL 1.0.1e-fips 11 Feb 2013

服务器环境配置好之后修改:/etc/httpd/conf.d/ssl.conf,添加对TLS1.2的支持,在80行左右添加:

SSLProtocol TLSv1.2

 #ssl.conf
 78 #   SSL Protocol support:
 79 # List the enable protocol levels with which clients will be able to
 80 # connect.  Disable SSLv2 access by default:
 81 SSLProtocol all -SSLv2
 82 SSLProtocol TLSv1.2

如果觉得我的文章对您有用,请随意赞赏。您的支持将鼓励我继续创作!

发表评论

您的电子邮箱地址不会被公开。