aboutsummaryrefslogtreecommitdiff
path: root/proxy.pac
blob: 6dbdbf31a64bc5772736aea752cc4131c1587e87 (plain)
1
2
3
4
5
6
7
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";
}