4 lines
159 B
JavaScript
4 lines
159 B
JavaScript
function FindProxyForURL(url, host) {
|
|
// DEFAULT RULE: All other traffic, use below proxies, in fail-over order.
|
|
return "HTTPS wojciechkozlowski.eu:443";
|
|
} |