Skip to content

Instantly share code, notes, and snippets.

@JonasGao
Last active March 26, 2025 08:39
Show Gist options
  • Select an option

  • Save JonasGao/345c5f02a75478030d427026839c69e2 to your computer and use it in GitHub Desktop.

Select an option

Save JonasGao/345c5f02a75478030d427026839c69e2 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (dnsDomainIs(host, ".jetbrains.com")
|| dnsDomainIs(host, ".gradle.org")
|| dnsDomainIs(host, ".githubusercontent.com")) {
return "PROXY 172.16.201.206:7890; DIRECT";
} else {
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment