Hallo wir haben bei uns den Proxy mit dem Automatischen Script im Einsatz
function FindProxyForURL(url, host) {
// our local URLs from the domains below hugdom.local don't need a proxy:
if (shExpMatch(host, "localhost"))
{
return "DIRECT";
// All other requests go through port 8080 of vpn.hugdom.local.
// should that fail to respond, go directly to the WWW:
return "PROXY vpn.hugdom.local:8080; DIRECT";
}
Die Localhost ausnahme brauchen wir für eine Applikation von unserer Bank.
wenn wir die Proxy Einstellungen Manuell im Browser Eintragen und den Localhost als Ausnahme setzen funktioniert es eiwandfrei.
es kommt immer Content Blocked
im Browser...
This thread was automatically locked due to age.