Skip to content

Instantly share code, notes, and snippets.

@v-r
Created May 21, 2024 14:33
Show Gist options
  • Save v-r/c6b8dc30f2375a88fd3b79241f370029 to your computer and use it in GitHub Desktop.
Save v-r/c6b8dc30f2375a88fd3b79241f370029 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (shExpMatch(url, "*robotdata.int.starship.xyz*")) {
return 'PROXY 127.0.0.1:3000';
}
return 'DIRECT';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment