diff options
author | Git'Fellow <carlos@reendex.com> | 2022-08-25 12:42:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 12:42:22 +0200 |
commit | 09af5acb007ba197bb77d31864bab57ddad773f7 (patch) | |
tree | 1ae9eb044e26967db7d185a4853152c1ae160a88 /config/config.sample.php | |
parent | c1699d9f5d2dc9abb2d8bd845b11e12b2ee4c61a (diff) | |
download | nextcloud-server-09af5acb007ba197bb77d31864bab57ddad773f7.tar.gz nextcloud-server-09af5acb007ba197bb77d31864bab57ddad773f7.zip |
Document updatedirectory option
Signed-off-by: Git'Fellow <carlos@reendex.com>
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 05fba5777eb..c17799240ce 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1755,6 +1755,15 @@ $CONFIG = [ 'tempdirectory' => '/tmp/nextcloudtemp', /** + * Override where Nextcloud stores update files while updating. Useful in situations + * where the defult `datadirectory` is on network disk like NFS, or is otherwise + * restricted. Defaults to the value of `datadirectory` if unset. + * + * The Web server user must have write access to this directory. + */ +'updatedirectory' => '', + +/** * Hashing */ |