home *** CD-ROM | disk | FTP | other *** search
- // These are simple examples of proxy autoconfig file
- // See http://home.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
- // for details
-
- // example nr.1
- function FindProxyForURL(url, host)
- {
- if (isPlainHostName(host))
- return "DIRECT";
- else
- return "PROXY proxy:3128"; // ! replace "proxy" with the name or IP address
- } // of computer running WinProxy
-
-
-
- /*
-
- // example nr.2
- function FindProxyForURL(url, host)
- {
- if (isPlainHostName(host) ||
- dnsDomainIs(host, ".our.domain.cz"))
- return "DIRECT";
- else
- return "PROXY proxy:3128T";
- }
-
- */