polish changelogs

This commit is contained in:
Michael Eischer
2025-04-14 21:30:39 +02:00
parent eee73d3bc1
commit 4c368ae1fb
4 changed files with 13 additions and 10 deletions

View File

@@ -1,8 +1,10 @@
Enhancement: Add support for proxy-based authentication
Enhancement: Support proxy-based authentication
The server now supports authentication via a proxy header specified with the `--proxy-auth-username` flag (e.g., `--proxy-auth-username=X-Forwarded-User`).
When this flag is set, the server will authenticate users based on the given header and disable BasicAuth.
Note that `--proxy-auth-username` is ignored if `--no-auth` is set, as `--no-auth` disables all authentication.
Rest-server now supports authentication via HTTP proxy headers. This feature can
be enabled by specifying the username header using the `--proxy-auth-username`
option (e.g., `--proxy-auth-username=X-Forwarded-User`). When enabled, the server
authenticates users based on the specified header and disables BasicAuth.
Note that proxy authentication is disabled when `--no-auth` is set.
https://github.com/restic/rest-server/issues/174
https://github.com/restic/rest-server/pull/307
https://github.com/restic/rest-server/pull/307