Skip to content

Instantly share code, notes, and snippets.

@evolify
Last active May 6, 2023 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evolify/8f9d73544ec1f0643fa99dfeac4a6c1e to your computer and use it in GitHub Desktop.
Save evolify/8f9d73544ec1f0643fa99dfeac4a6c1e to your computer and use it in GitHub Desktop.
auto proxy
function FindProxyForURL(url, host){
if(host.includes("") ) {
return "PROXY 10.224.200.25:8899";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment