I am looking to have both a forward proxy, and a reverse proxy at the same time. It seems as though, when I do this, the Proxy definition I put in place to restrict access to the forward proxy also effects the reverse proxy.
...
#... inside my virtual host
RewriteEngine on
ProxyPass / http://mydomain.com/
ProxyPassReverse / http://mydomain.com/
ProxyRequests On
<Proxy *>
Order Deny,Allow
Deny from all
Allow from My.IP.Here
</Proxy>
...
This works, although, the ProxyPass (reverse proxy) takes in the Proxy definition, Deny, Allow from My IP only.
Anyone know a way to restrict access to the forward proxy (I should be the only one allowed) but leave the reverse proxy open to anyone on any IP?
any suggestions would be appreciated.