Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Aug 2022 17:32:02 +0000
From:      bugzilla-noreply@freebsd.org
To:        gecko@FreeBSD.org
Subject:   maintainer-feedback requested: [Bug 265820] www/firefox Proxy not accepted
Message-ID:  <bug-265820-21738-DIFbfJ839r@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-265820-21738@https.bugs.freebsd.org/bugzilla/>
References:  <bug-265820-21738@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
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=3D265820



--- 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:=20
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
..



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-265820-21738-DIFbfJ839r>