This is a discussion on internet-antivirus-proxy-browser within the Squid Users forums, part of the Web Server and Related Forums category; Hi i have this situation a browser which connects to an antivirus (hbedv) proxy which connects to squid then squid ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi
i have this situation a browser which connects to an antivirus (hbedv) proxy which connects to squid then squid connect to internet but i like browsers to connect to squid then squid will connect to proxy AV then proxy AV will go to the internet how to tell squid to redirect TCP 80 to proxy AV? thx |
|
|||
|
cdt_sylvestre wrote:
> Hi > i have this situation > a browser which connects to an antivirus (hbedv) proxy > which connects to squid > then squid connect to internet > > > but i like browsers to connect to squid > then squid will connect to proxy AV > then proxy AV will go to the internet > > how to tell squid to redirect TCP 80 to proxy AV? > > > thx you have to configure squid and webgate as "Networkconfiguration 2" (Webgate Manual) the entries in the squid.conf: cache_peer localhost parent 8080 0 no-query no-digest default (if avwebgate listen on Port 8080) and acl all src 0.0.0.0/0.0.0.0 acl SSL method CONNECT always_direct allow SSL (Because HTTPS-connections are not supported by AvWebGate) never_direct allow all more information you get in the README File. Markus |