mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 07:33:21 +00:00

* Add group-accessible-repos option The group-accessible-repos option will let filesystem group id be able to access files and dir within the restic repo Default stick with old behaviour to be owner restricted While here make dirMode and fileMode within Options struct private --------- Co-authored-by: Michael Eischer <michael.eischer@fau.de>
9 lines
413 B
Text
9 lines
413 B
Text
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.
|
|
|
|
https://github.com/restic/rest-server/issues/189
|
|
https://github.com/restic/rest-server/pull/308
|