Skip to content

Instantly share code, notes, and snippets.

@manuel-rhdt
Last active April 4, 2020 13:39
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 manuel-rhdt/530df7e4ac86591fbeae146b43635d4b to your computer and use it in GitHub Desktop.
Save manuel-rhdt/530df7e4ac86591fbeae146b43635d4b to your computer and use it in GitHub Desktop.
AMOLF proxy .pac
function FindProxyForURL(url, host) {
if (dnsDomainIs(host, ".amolf.nl")) {
return "SOCKS 10.0.0.4:1080";
} else {
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment