Skip to content

Instantly share code, notes, and snippets.

@ferrata
Created August 14, 2024 14:10
Show Gist options
  • Save ferrata/bd9b595ac11d5cef7359840d0b83dde1 to your computer and use it in GitHub Desktop.
Save ferrata/bd9b595ac11d5cef7359840d0b83dde1 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*localhost")) {
return "PROXY localhost";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment