diff options
author | Josh <josh.t.richards@gmail.com> | 2024-03-11 19:22:20 -0400 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-03-12 16:56:27 +0000 |
commit | 1e85f382873e9d3114147f55992e813ae7b17d27 (patch) | |
tree | 7255b7bc1335b00ba65da94263c5e97b216bfc4e /config/config.sample.php | |
parent | dffa31d4f0278dce172688992abf4ba811726138 (diff) | |
download | nextcloud-server-1e85f382873e9d3114147f55992e813ae7b17d27.tar.gz nextcloud-server-1e85f382873e9d3114147f55992e813ae7b17d27.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/config.sample.php')
-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 185473ea6c7..48189e067c1 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1906,7 +1906,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' => '', |