diff options
author | Josh <josh.t.richards@gmail.com> | 2024-03-11 19:22:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 19:22:20 -0400 |
commit | 243ff7c976104892f2dc1066014265a767380369 (patch) | |
tree | 0e04a5baeb8fecfdec9df2f969ba252d24522b9f /config | |
parent | f99b820cd0e59b75bc8867a03dabc9e28157ccdf (diff) | |
download | nextcloud-server-243ff7c976104892f2dc1066014265a767380369.tar.gz nextcloud-server-243ff7c976104892f2dc1066014265a767380369.zip |
docs(config.sample.php):
When setting a custom `updatedirectory` it's important that it not be located within the Server installation folder structure.
Partially addresses nextcloud/updater#463
Signed-off-by: Josh <josh.t.richards@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 364e573974a..e09b0904808 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1946,7 +1946,9 @@ $CONFIG = [ * where the default `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. + * If set, the value MUST be located _outside_ of the installation directory of Nextcloud and + * writable by the Web server user. + * */ 'updatedirectory' => '', |