mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 15:43:21 +00:00
Merge pull request #339 from MichaelEischer/polish-changelogs
Polish changelogs
This commit is contained in:
commit
4e6193ceee
4 changed files with 13 additions and 10 deletions
|
@ -2,8 +2,8 @@ Enhancement: Support group accessible repositories
|
||||||
|
|
||||||
Rest-server now supports making repositories accessible to the filesystem group
|
Rest-server now supports making repositories accessible to the filesystem group
|
||||||
by setting the `--group-accessible-repos` option. Note that permissions of
|
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
|
existing files are not modified. To make an existing repository group-accessible,
|
||||||
the 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/issues/189
|
||||||
https://github.com/restic/rest-server/pull/308
|
https://github.com/restic/rest-server/pull/308
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Enhancement: Output status of append only mode on startup
|
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
|
https://github.com/restic/rest-server/pull/295
|
||||||
|
|
|
@ -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`).
|
Rest-server now supports authentication via HTTP proxy headers. This feature can
|
||||||
When this flag is set, the server will authenticate users based on the given header and disable BasicAuth.
|
be enabled by specifying the username header using the `--proxy-auth-username`
|
||||||
Note that `--proxy-auth-username` is ignored if `--no-auth` is set, as `--no-auth` disables all authentication.
|
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/issues/174
|
||||||
https://github.com/restic/rest-server/pull/307
|
https://github.com/restic/rest-server/pull/307
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
Enhancement: Hardened tls settings
|
Enhancement: Hardened tls settings
|
||||||
|
|
||||||
rest-server now uses a secure tls cipher suit set and the minimal TLS version
|
Rest-server now uses a secure TLS cipher suite set by default. The minimum TLS
|
||||||
can be set with the option `--tls-min-ver`
|
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
|
https://github.com/restic/rest-server/pull/315
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue