Re: [squid-users] [EXTERNAL] Access to internal domains using Squid

2023-02-09 Thread Joey Officer
Was thinking I should give an example of a proxy auto configuration script: pac.conf : /* proxy auto configuration file sample */ function FindProxyForURL(url, host) { var proxy_no = "DIRECT"; var proxy_yes = "PROXY proxy.domain.com:3128"; /* Generally matches internal hosts. E

Re: [squid-users] [EXTERNAL] Access to internal domains using Squid

2023-02-08 Thread Joey Officer
We do something similar but using wpad/auto config script to direct local traffic ( .domain.com ) to use the DIRECT route, and else use PROXY This is probably the better way to go, though I'm not definitive on that. Joey -Original Message- From: squid-users On Behalf Of Roberto Carna