I am looking to figure out what I am doing wrong in my Apache configuration so I can get Apache to basically become a forward proxy so I can forward SSL requests out. I don't need any caching, only need it to be a proxy to forward non-SSL & SSL connections.
My configuration looks like this in my /etc/httpd/httpd.conf
ProxyRequests On
<Proxy *>
Order deny,allow
Deny from all
Allow from all
</Proxy>
ProxyVia On
It seems to proxy non-SSL connections from what I can see but doesn't work at all with SSL connections.
Any help would greatly be appreciated.
Devin Acosta