compy/proxy.pac.tmpl

7 lines
187 B
Cheetah

function FindProxyForURL(url, host) {
if (url.substring(0, 5) == 'http:' || url.substring(0, 6) == 'https:') {
return "HTTPS {{ env "DOMAIN" }}:9999";
}
return "DIRECT";
}