Skip to content

Instantly share code, notes, and snippets.

View manuel-rhdt's full-sized avatar

Manuel Reinhardt manuel-rhdt

  • AMOLF
  • Amsterdam
View GitHub Profile
@manuel-rhdt
manuel-rhdt / amolf.pac
Last active April 4, 2020 13:39
AMOLF proxy .pac
function FindProxyForURL(url, host) {
if (dnsDomainIs(host, ".amolf.nl")) {
return "SOCKS 10.0.0.4:1080";
} else {
return "DIRECT";
}
}