wiki:howto/ProxyAutoconfig

Version 1 (modified by Edwin Eefting, 12 years ago) (diff)

--

Windows/Internet? explorer automatisch proxy settings laten detecteren

WORK IN PROGRESS


http://en.wikipedia.org/wiki/Proxy_auto-config

function FindProxyForURL(url, host) { 
    if (shExpMatch(host, "*.playlane.be"))
        {
                return "DIRECT";
        }
    if (isInNet (host, "192.168.1.0", "255.255.252.0"))
        {
                return "DIRECT"; 
        }
    return "PROXY edu.olvo.be:3128; DIRECT"; 
}