Skip to content

Instantly share code, notes, and snippets.

@nook-scheel
Created February 12, 2019 14:01
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 nook-scheel/911ce48cb2d6b0790140a0e356c34af9 to your computer and use it in GitHub Desktop.
Save nook-scheel/911ce48cb2d6b0790140a0e356c34af9 to your computer and use it in GitHub Desktop.
function FindProxyForURL (url, host) {
if (dnsDomainIs(host, '.k8s')) {
return 'PROXY 127.0.0.1:80';
}
return 'DIRECT';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment