Skip to content

Instantly share code, notes, and snippets.

@mgrahamjo
Last active March 4, 2023 23:52
Show Gist options
  • Save mgrahamjo/e9643c0003465bf3ae6104be82d81edb to your computer and use it in GitHub Desktop.
Save mgrahamjo/e9643c0003465bf3ae6104be82d81edb to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*.proxysmith.test")) {
return "PROXY proxysmith.test";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment