Skip to content

Instantly share code, notes, and snippets.

@geowa4
Last active March 10, 2023 18:31
Show Gist options
  • Save geowa4/f67e719a1075f1040775b94748b8dc69 to your computer and use it in GitHub Desktop.
Save geowa4/f67e719a1075f1040775b94748b8dc69 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if(dnsDomainIs(host, "postman-echo.com")) {
return "PROXY squid.corp.redhat.com:3128";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment