Skip to content

Instantly share code, notes, and snippets.

@hedcler
Last active September 1, 2017 19:54
Show Gist options
  • Save hedcler/abeec15b51192d056195d37b0dc23d49 to your computer and use it in GitHub Desktop.
Save hedcler/abeec15b51192d056195d37b0dc23d49 to your computer and use it in GitHub Desktop.
*.local proxy pass with PAT file
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*.local")) {
return "PROXY proxy.local";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment