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
Enhancement: Add support for proxy-based authentication
1
+
Enhancement: Support proxy-based authentication
2
2
3
-
The server now supports authentication via a proxy header specified with the `--proxy-auth-username` flag (e.g., `--proxy-auth-username=X-Forwarded-User`).
4
-
When this flag is set, the server will authenticate users based on the given header and disable BasicAuth.
5
-
Note that `--proxy-auth-username` is ignored if `--no-auth` is set, as `--no-auth` disables all authentication.
3
+
Rest-server now supports authentication via HTTP proxy headers. This feature can
4
+
be enabled by specifying the username header using the `--proxy-auth-username`
5
+
option (e.g., `--proxy-auth-username=X-Forwarded-User`). When enabled, the server
6
+
authenticates users based on the specified header and disables BasicAuth.
7
+
Note that proxy authentication is disabled when `--no-auth` is set.
0 commit comments