apache添加对 tls 1.2的支持

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

使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
 #SSL Protocol support:
 #List the enable protocol levels with which clients will be able to
 #connect.  Disable SSLv2 access by default:
 SSLProtocol all -SSLv2
 SSLProtocol TLSv1.2
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章