Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

proxy.pac (auto proxy config) not working in firefox 57

  • Keine Antworten
  • 4 haben dieses Problem
  • 3 Aufrufe
more options

I'm on Debian (firefox 57.0.4-1) behind an authenticated proxy. I'm not able to browse any site as no auth request is shown if I set the auto recognition of proxy. If I set the proxy manually, all works fine. the proxy.pac got from the proxy is: function FindProxyForURL(url, host) {

       if (isPlainHostName(host) || shExpMatch( url, "*192.168.20.1*" ) ) {
               return "DIRECT";
       }
       else if (host == "127.0.0.1") {
               return "DIRECT";
       }
       else
               return "PROXY 192.168.20.1:8060; DIRECT";

}

There's nothing wrong IMO, but it doesen't work. It worked on Firefox 45 (I can't try with other versions, unfortunately)

Thanks Claudio Any suggestion?

I'm on Debian (firefox 57.0.4-1) behind an authenticated proxy. I'm not able to browse any site as no auth request is shown if I set the auto recognition of proxy. If I set the proxy manually, all works fine. the proxy.pac got from the proxy is: function FindProxyForURL(url, host) { if (isPlainHostName(host) || shExpMatch( url, "*192.168.20.1*" ) ) { return "DIRECT"; } else if (host == "127.0.0.1") { return "DIRECT"; } else return "PROXY 192.168.20.1:8060; DIRECT"; } There's nothing wrong IMO, but it doesen't work. It worked on Firefox 45 (I can't try with other versions, unfortunately) Thanks Claudio Any suggestion?