summaryrefslogtreecommitdiff
path: root/adzap/rc/proxy-zip.pac
blob: 0285907ce7c6e44136c029572b39a22def35d4f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function FindProxyForURL(url, host) {
        if (isPlainHostName(host) ||
dnsDomainIs(host, ".zipworld.com.au"))
                return "DIRECT" ;
else if (isPlainHostName(host) ||
dnsDomainIs(host, ".zipworld.net"))
return "DIRECT" ;
        else if (isPlainHostName(host) ||
dnsDomainIs(host, ".zip.com.au"))
                return "DIRECT" ;
        else
            return "PROXY adzapper.cs.zip.com.au:8081; PROXY proxy1.syd.zipworld.net:8080; PROXY proxy2.syd.zipworld.net:8080; PROXY proxy3.syd.zipworld.net:8080; DIRECT"
}