function FindProxyForURL(url, host) { // If the host ends with .fnal.gov, use the SOCKS proxy if (dnsDomainIs(host, "analytics-hub.fnal.gov")) { return "SOCKS5 localhost:3128"; } // Otherwise, connect directly return "DIRECT"; }