LITA Regional Institute: Proxy Web Servers and AuthenticationProxy Web Servers and Authentication > Local PC Setup > Proxy Auto-Configuration Files
function FindProxyForURL(url,host) {
// If the host requested on the URL line is not a FQDN
// (eg, it is 'www'), then don't proxy.
if (isPlainHostName(host)) {
return "DIRECT";
}
// Otherwise, send through proxy
return "PROXY proxy.college.edu:4545";
}
}