I am trying to make a proxy gateway using Apache Forward proxy to have multiple clients route all HTTP traffic
hrough this proxy outgoing server.
I tried the following in my .htaccess file and still not working:
-------------------
Listen 3128
ProxyRequests on
<Proxy *>
Order Deny,Allow
Deny from all
Allow from 192.168.0
</Proxy>
-------------------
Any help will be appreciated.