apacheはtls 1.2に対するサポートを追加します。


テスト:http://askubuntu.com/questions/643037/how-to-enable-tls-1-2-in-apache
ウェブサーバをTLS 1.2に対応させるために必要なサーバの動作環境:
apache対応バージョンは>=2.23;
OpenSSL対応バージョンは>=1.0.1
アプリのバージョンを確認します
[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.comにTLS 1.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