I want to remove older versions of TLS and ciphers from my app(deployed on tomcat server 8.5.32) that is java 8 based application.
I have users using older browsers/operating systems and they will not be able to access the app(TLS 1.0and TLS 1.1).
I want to catch these people and redirect them to a different app page to show a nicer message to the customers.
Is anyone able to suggest a way this can be achieved?
I have a proposal by stackoverflow member to using a set of rewrite rules from the Rewrite Valve(https://tomcat.apache.org/tomcat-8.5-doc/rewrite.html) as this one allows conditions on %{SSL:variable} and then i would redirect the browser to a dedicated URL.
Anyone already have tried this?