Im trying to set up a subversion edge server that is accessible from outside my network, I have one public IP and so the main webserver proxies to other internal server, i got the non https port (3343) to proxy to the internal server but i cant get the https port (4434) to proxy to the internal server http port (3343), I set apache to listen for https on port 4434 and I can telnet to that port on the main webserver but when it tries to proxy to the internal server it times out
heres what my apache virtualhost is for that proxy
VirtualHost *:4434
ServerName sub.domain.com
SSLEngine On
SSLOptions +StrictRequire
SSLCertificateFile /etc/ssl/certs/server.crt
SSLCertificateKeyFile /etc/ssl/private/server.key
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://ipofinternalserver:3343/
VirtualHost
ProxyPassReverse / http://ipofinternalserver:3343/right with your existingProxyPass? – Shane Madden Feb 2 at 1:15