I am trying to enable TLS 1.2 in my web app which uses Tomcat 5.5 and Java 1.7. I am checking the website TLS version on both chrome and IE. Things I have tried:
- adding -Dhttp.protocols = TLSv1.2 to JAVA_OPTS in setenv.bat. (still shows TLS 1)
- setting ssLENabledProtocols to TLSV1.2 in the server.conf file. (still shows TLS 1)
- setting ssLProtocol to TLSV1.2 in server conf file. (website does not open)
- setting JAVA_HOME to JDK 8 in setenv.bat file. (still shows TLS 1)
Is there anything I could do to enable TLS 1.2?
There is a website hosted using IIS with TLSV1.2 on the same server.