I have an instance of httpd (version 2.0) that uses mod_proxy to transform incoming http requests to https. My problem is that I need my proxy to connect to a server that only supports SSLv3/TLSv1 Client Hello handshaking.
As a test, I've tried forcing TLSv1 on every option I can find:
SSLProxyEngine On
SSLProxyProtocol TLSv1
SSLProxyCipherSuite TLSv1
But I can see that httpd is still attempting an SSLv2 handshake. I realize this was the old intended behavior for backwards compatibility for some clients, but as far as I can tell this should have forced a newer handshake. Is this intended behavior? Is this maybe a bug in my old modules?