|
|||||||||||
|
Re: bypass intranet sites
From: Ariel Szujatovich <aszujatovich(at)newsan.com.ar>
Date: Thu Aug 16 2007 - 09:08:32 EDT
See http://en.wikipedia.org/wiki/Proxy_auto-config to start Below you can find an example of my own file function FindProxyForURL(url, host) // Make everything lower case. // Local/Internal rule if (0
// LOCAL
|| isPlainHostName(host)
|| (host == "servidor1")
|| (host == "servidor2")
|| (host == "servidor3")
|| (host == "localhost")
|| shExpMatch(host, "127.*")
|| shExpMatch(host, "10.*.*.*")
|| shExpMatch(host, "192.168.*.*")
) {
return "DIRECT";
} else {
return "PROXY 99.99.99.99:80";;
} Where servidor1, servidor2, servidor3 are local servers and 99.99.99.99:80 is the address and port of the proxy server Ariel Szujatovich
New San S.A.
sylvan dacounha <sylvan_2804@yahoo.com>
Sent by: redhat-list-bounces@redhat.com
To
Subject
Dear All,
redhat 9
right now users hav to explicitly say in the browsers .. BYPASS PROXY SERVER for local addresses after check the use proxy server and the address has to be mentioned most users are non techinal so they dont use this option or put wrong settin in bypass proxy option also when the proxy is used for proxyin local sites the load on squid increases apprecite if you could tell me how cd i let squid bypass proxy for all my local intranet websites i have abt 7 websites running apprecite your help regards simon Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, photos & more. -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-listReceived on Thu Aug 16 09:10:25 2007 This archive was generated by hypermail 2.1.8 : Wed Oct 10 2007 - 00:39:39 EDT |
||||||||||
|
|||||||||||