proxy.pac (auto proxy config) not working in firefox 57
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?