I want to set "force to use TLS 1.2" in my server httpd-ssl.conf
SSLProtocol -all +TLSv1.2
but I'm also considering if some client modules does not support TLS 1.2, and I would like to give it a exception that TLS 1.x can be acceptable.
Am I able to do such thing?
e.g. disable TLS_1.2 restriction in specific URL path ( https:///specific/path/ ) or specific service or something like this.
thanks!