Skip to content

Instantly share code, notes, and snippets.

@bjalt
Created April 8, 2026 07:03
Show Gist options
  • Select an option

  • Save bjalt/9c12665e534fe8d1131b335c72522b57 to your computer and use it in GitHub Desktop.

Select an option

Save bjalt/9c12665e534fe8d1131b335c72522b57 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (dnsDomainIs(host, '.wip')) {
return 'PROXY 127.0.0.1:7080';
}
return 'DIRECT';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment