I made a
previous post [webmasterworld.com] about this a some time ago, and it never got solved. The post has since been closed, but the necessity has arisen again, however a few things are different about this time though. This time, there's no Tor involved. Point is, I'm trying to make Apache forward requests coming from a set subdomain on port 80 to privoxy on port 8118.
Here are a couple things I've tried (I tried variants of them as well)
<Proxy *:80>...</Proxy>
<Proxy proxy.example.com:80>...</Proxy>
<Proxy *>...</Proxy>
<Proxy proxy.example.com>...</Proxy>
<VirtualHost *:80>...</VirtualHost>
<Location />...</Location>
ProxyPass / http://proxy.example.com:8118
ProxyPassReverse / http://proxy.example.com:8118
ProxyRequests On
ProxyVia On
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
ProxyRemote * http://proxy.example.com:8118
I found a couple cookies while search though. While I'm not sure if they are any good, but I think they may be the solution.
A compile option to use a SOCKS proxy in the Apache proxy module [auburn.edu] - I'm not sure what to do about this info. It is more or less, just a lead on where to go next.
The ProxyRemote directive [httpd.apache.org] - I'm doing some further checking on this one.