I have an apache that redirects any incoming requests towards url-a to url-b. The apache configuration supports both TLSv1.0 and TLSv1.2.
The host behind url-b will only accept TLSv1.2 for performing the SSL handshake. My question is: if a client makes requests to url-a using TLSv1.0, will the request be handled correctly when being redirected to url-b which accepts only TLSv1.2?
So basically the requests will follow this way:
client(TLSv1.0) --> apache(performs handshake with client with TLSv1.0) (redirects request to server, performs handshake with server with TLSv1.2) --> server(TLSv1.2).
My tests showed that it will work, but I don't have in-depth knowledge of apache to 100% confirm this.
Thanks