Merge pull request #339 from MichaelEischer/polish-changelogs

Polish changelogs
This commit is contained in:
Michael Eischer 2025-05-12 19:00:34 +02:00 committed by GitHub
commit 4e6193ceee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 13 additions and 10 deletions

View file

@ -2,8 +2,8 @@ Enhancement: Support group accessible repositories
Rest-server now supports making repositories accessible to the filesystem group
by setting the `--group-accessible-repos` option. Note that permissions of
existing files are not modified. Use `chmod -R g+rwX /path/to/repo` to make
the repository group-accessible.
existing files are not modified. To make an existing repository group-accessible,
use `chmod -R g+rwX /path/to/repo`.
https://github.com/restic/rest-server/issues/189
https://github.com/restic/rest-server/pull/308

View file

@ -1,5 +1,5 @@
Enhancement: Output status of append only mode on startup
Rest-server now outputs whether append only mode has been enabled on startup.
Rest-server now displays the status of append-only mode during startup.
https://github.com/restic/rest-server/pull/295

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

View file

@ -1,6 +1,7 @@
Enhancement: Hardened tls settings
rest-server now uses a secure tls cipher suit set and the minimal TLS version
can be set with the option `--tls-min-ver`
Rest-server now uses a secure TLS cipher suite set by default. The minimum TLS
version is now TLS 1.2 and can be further increased using the new `--tls-min-ver`
option, allowing users to enforce stricter security requirements.
https://github.com/restic/rest-server/pull/315