Bugzilla Automation <[email protected]> has asked freebsd-gecko (Nobody)
<[email protected]> for maintainer-feedback:
Bug 265820: www/firefox Proxy not accepted
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=265820
--- Description ---
Firefox does not accept a proxy login, the proxy user/password dialog keeps
appearing forever. proxy.pac is accepted, the dialog shows the correct
AuthName.
This proxy connection works with Firefox under Windows 10.
Proxy server is Apache with mod_proxy. FreeBSD 13.1, Firefox 103.
Proxy.pac:
function FindProxyForURL(url, host) { return "HTTPS my.host:8081"; }
<VirtualHost *:8081>
ProxyRequests On
<Proxy "*">
AuthUserFile /usr/local/etc/apache24/passwd
AuthGroupFile /dev/null
AuthName "Proxy Auth"
AuthType Basic
require valid-user
</Proxy>
SSLEngine on
..