HDFS-7274. Disable SSLv3 in HttpFS. (Robert Kanter via kasha)
This commit is contained in:
parent
1a78082338
commit
3f48493bed
|
@ -70,7 +70,7 @@
|
|||
described in the APR documentation -->
|
||||
<Connector port="${httpfs.http.port}" protocol="HTTP/1.1" SSLEnabled="true"
|
||||
maxThreads="150" scheme="https" secure="true"
|
||||
clientAuth="false" sslProtocol="TLS"
|
||||
clientAuth="false" sslEnabledProtocols="TLSv1"
|
||||
keystoreFile="${httpfs.ssl.keystore.file}"
|
||||
keystorePass="${httpfs.ssl.keystore.pass}"/>
|
||||
|
||||
|
|
|
@ -1310,6 +1310,8 @@ Release 2.6.0 - UNRELEASED
|
|||
HDFS-7291. Persist in-memory replicas with appropriate unbuffered copy API
|
||||
on POSIX and Windows. (Xiaoyu Yao via cnauroth)
|
||||
|
||||
HDFS-7274. Disable SSLv3 in HttpFS. (Robert Kanter via kasha)
|
||||
|
||||
Release 2.5.1 - 2014-09-05
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
Loading…
Reference in New Issue