HADOOP-11217. (Addendum to allow SSLv2Hello) Disable SSLv3 in KMS. (Robert Kanter via kasha)

(cherry picked from commit 87818ef4e7)
This commit is contained in:
Karthik Kambatla 2014-11-12 18:39:03 -08:00
parent a6de8f2e30
commit 6e64390627
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@
described in the APR documentation -->
<Connector port="${kms.http.port}" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="${kms.max.threads}" scheme="https" secure="true"
clientAuth="false" sslEnabledProtocols="TLSv1"
clientAuth="false" sslEnabledProtocols="TLSv1,SSLv2Hello"
keystoreFile="${kms.ssl.keystore.file}"
keystorePass="${kms.ssl.keystore.pass}"/>