maintainer-feedback requested: [Bug 265820] www/firefox Proxy not accepted

From: <bugzilla-noreply_at_freebsd.org>
Date: Sat, 13 Aug 2022 17:32:02 UTC
Bugzilla Automation <bugzilla@FreeBSD.org> has asked freebsd-gecko (Nobody)
<gecko@FreeBSD.org> 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
..