aboutsummaryrefslogtreecommitdiff
path: root/proxy.pac
diff options
context:
space:
mode:
Diffstat (limited to 'proxy.pac')
-rw-r--r--proxy.pac8
1 files changed, 8 insertions, 0 deletions
diff --git a/proxy.pac b/proxy.pac
new file mode 100644
index 0000000..6dbdbf3
--- /dev/null
+++ b/proxy.pac
@@ -0,0 +1,8 @@
+function FindProxyForURL(url, host) {
+ if ( shExpMatch(host, "*.adobe.com") || host == "adobe.com"
+ || shExpMatch(host, "*.adobelogin.com") || host == "adobelogin.com"
+ || shExpMatch(host, "*.adobe.io") || host == "adobe.io") {
+ return "SOCKS 127.0.0.1:56789";
+ }
+ return "DIRECT";
+}