Question
proxy.pac but no access to local WebSite
Hello
We're using explicit Web Proxy with pac-File.
function FindProxyForURL(url,host){ if (shExpMatch(url,"*.domain.com/*")){ return "DIRECT";} if (shExpMatch(url,"*domain.com:*/*")){ return "DIRECT";} if (isInNet(host,"192.168.0.0","255.255.0.0")){ return "PROXY proxy.domain.com:8888";} if (isInNet(host,"10.130.0.0","255.255.0.0")){ return "PROXY proxy.domain.com:8888";} return "PROXY proxy.domain.com:8888"; }
Internet works but with local IP like https://192.168.190.5 I get access denied:

How can we fix that problem?
Many thanks in advance
TheBob
