I am looking for some ideas on disabling TLS 1 and 1.1 in order to get the TLS version 2 working on my Apache Knox appliance. I tried :
- Add a line in the gateway-site.xml file
<property>
<name>ssl.exclude.protocols</name>
<value>TLSV1.1</value>
<description>Excluded SSL protocols.</description>
</property>
- Add the last line in the knoxsso.xml file :
<topology>
<gateway>
<provider>
<role>webappsec</role>
<name>WebAppSec</name>
<enabled>true</enabled>
<param><name>xframe.options.enabled</name><value>true</value></param>
<param><name>strict.transport.enabled</name><value>true</value></param>
</provider>