Skip to content

Instantly share code, notes, and snippets.

@cooki3monst3r77
Created December 31, 2025 14:30
Show Gist options
  • Select an option

  • Save cooki3monst3r77/b8ccacb9b6afc76f268b75883eea881c to your computer and use it in GitHub Desktop.

Select an option

Save cooki3monst3r77/b8ccacb9b6afc76f268b75883eea881c to your computer and use it in GitHub Desktop.
MyProxy
function FindProxyForURL(url, host) {
if (shExpMatch(host, "lakota.spi")) {
return "PROXY your.proxy.server:port";
} else {
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment