WE are trying to setup HTTPS tunnelling to a backend server through Apache proxy but we are finding the client connect but Apache does not send through the traffic the backend server.
Config we have on our Apache proxy virtual host is
DocumentRoot "/usr/local/apache/htdocs/ibcm/"
ServerName test.testdom.local
ErrorLog logs/ibcm
ServerAdmin webmaster@testdom.local
ProxyRequests On
AllowConnect 443
SSLEngine on
SSLHonorCipherOrder On
SSLProtocol -ALL SSLv3 TLSv1
SSLCipherSuite ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4RSA:HIGH:MEDIUM
SSLCertificateFile "/etc/ssl/crt/ibcm.crt"
SSLCertificateKeyFile "/etc/ssl/crt/testdom.key"
SSLCertificateChainFile "/etc/ssl/crt/CA-DOM.crt"
Order deny,allow
Deny from all
Order deny,allow
Allow from all
Anybody know what we are not doing correctly. Also we found Apache would not start without us putting in the root certificate. Thought it would not need any certificate for tunnelling so wonder if we have missed something.