This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Proxy url exception problem

Hi,

I am trying to get this url working through the proxy:

http://minecraft.dangis.dk:8081/status.png

using this exception:

^https?://([A-Za-z0-9.-]*\.)?dangis\.dk:8081/

But despite whatever exeption-url i am trying i have not been able to get it to work.

When not using the proxy, everything works fine, so i think it has to be the exception url that is wrong. 

I am using the proxy in standard mode with SSL scanning and UTM 9.100-8.

Any help would be appreciated.

Thanks,

Mark


This thread was automatically locked due to age.
  • Elegant solution, Mark - thaks for sharing it with us!

    Cheers - Bob
  • Hi,

    I found out, that there where errors in the above PAC file,
    so here is a working - and a little simpler - one:

    function FindProxyForURL(url, host)
    {
    // Send direct if the hostname matches
        if (dnsDomainIs(host, "minecraft.dangis.dk"))
         return "DIRECT";
    // Use proxy for all others
        else
         return "PROXY 192.168.100.1:8080";
    }

    Regards,

    Mark