0

We have a simple pac file used for staff in work and at home:

function FindProxyForURL(url, host) {
    /* Exclude "Portico" URL */
    if (shExpMatch(url, "*google.com*"))
    {
        return "DIRECT";
    }
    /* Set proxy? */
    if (isResolvable(host))
    {
        return "PROXY xxx.xxx.xxx.xxx:8080";
    }
    /* Return "DIRECT" if above statements are NOT true */
    return "DIRECT";
}**

The file works in work but not at home: we're having to remove the 'use pac file' option from within IE to get their home wifi to work.
Does anyone have any ideas on what I'm doing wrong please? Everything looks ok but it's not working!

MPB
  • 1

0 Answers0