You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to set up ui with nginx proxy and pass basic http authentification via proxy. With that browser should ask for username and password, then send them via proxy. Right now there is ability to set some headers (including some auth data), but I need to read auth data from browser and send those.
In short I need to add proxy_pass_header Authorization line into nginx proxy configuration,
Right now there is no right option to do that, I inspected templates and following is working:
This will add fake header Pass and inject extra configuration instruction. This should not work as it's potential big security issue, but this allowed me to configure missing thing. With that I got what I wanted - passed auth data and working GUI, but I hope to see new env var in future to allow this task.
The text was updated successfully, but these errors were encountered:
I'm trying to set up ui with nginx proxy and pass basic http authentification via proxy. With that browser should ask for username and password, then send them via proxy. Right now there is ability to set some headers (including some auth data), but I need to read auth data from browser and send those.
In short I need to add
proxy_pass_header Authorization
line into nginx proxy configuration,Right now there is no right option to do that, I inspected templates and following is working:
This will add fake header
Pass
and inject extra configuration instruction. This should not work as it's potential big security issue, but this allowed me to configure missing thing. With that I got what I wanted - passed auth data and working GUI, but I hope to see new env var in future to allow this task.The text was updated successfully, but these errors were encountered: