Skip to content

Instantly share code, notes, and snippets.

@Fndroid
Last active April 12, 2019 08:20
Show Gist options
  • Save Fndroid/5ac988d81809df99046d263d2fe7fb24 to your computer and use it in GitHub Desktop.
Save Fndroid/5ac988d81809df99046d263d2fe7fb24 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (shExpMatch(host, "127.*")) {
return "DIRECT";
}
return "PROXY 127.0.0.1:7890; SOCKS5 127.0.0.1:7891; DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment