It turns out you are right again.
I have configured my reverse proxy with Basic Authentication:
So i gues the problem is that Authentication headers are passed to OpnSense.
Once I remove Basic Authentication on the Reverse Proxy everything works just fine.
Can anybody give me a hint on how to not passing the Authorization header ?
I have configured my reverse proxy with Basic Authentication:
Code Select
<Proxy *>
Order deny,allow
Allow from all
Authtype Basic
Authname "Password Required"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
# SetEnv proxy-chain-auth
</Proxy>
So i gues the problem is that Authentication headers are passed to OpnSense.
Once I remove Basic Authentication on the Reverse Proxy everything works just fine.
Can anybody give me a hint on how to not passing the Authorization header ?