There are quite a few users using *.pac files and I think it's important to make sure the are as much optimised as possible
I have attached the *.pac file I am using below. Open to feedback [:)]
Also if hostname is a local host the connection is direct.
function FindProxyForURL(url, host)
{
var i=myIpAddress();
if(isPlainHostName(host))
{
return "DIRECT";
}
var g=new Array())
{
return "DIRECT";
}
return "PROXY :; DIRECT";
}
}
[/CODE]
This thread was automatically locked due to age.