forward index back LITA Regional Institute: Proxy Web Servers and Authentication
San Antonio, TX    February 22, 2001

Proxy Web Servers and Authentication > Local PC Setup > Proxy Auto-Configuration Files

Example -- All clients through one proxy server

  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";
    }
  }