Skip to content

Instantly share code, notes, and snippets.

@lucasmaurice
Last active July 28, 2019 22:14
Show Gist options
  • Save lucasmaurice/2dd6e0dedf60cf45c342b653ad158d48 to your computer and use it in GitHub Desktop.
Save lucasmaurice/2dd6e0dedf60cf45c342b653ad158d48 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
// If the hostname matches, use proxy.
if (
shExpMatch(host, "*.home") ||
shExpMatch(host, "192.168.1.*")
) {
return "SOCKS localhost:8080";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment