summaryrefslogtreecommitdiff
path: root/adzap/rc/proxy-zip.pac
diff options
context:
space:
mode:
Diffstat (limited to 'adzap/rc/proxy-zip.pac')
-rw-r--r--adzap/rc/proxy-zip.pac13
1 files changed, 13 insertions, 0 deletions
diff --git a/adzap/rc/proxy-zip.pac b/adzap/rc/proxy-zip.pac
new file mode 100644
index 0000000..0285907
--- /dev/null
+++ b/adzap/rc/proxy-zip.pac
@@ -0,0 +1,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"
+}