diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-11-27 10:06:14 +0100 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-11-27 11:39:49 +0100 |
commit | 8c0f8db6ca3d1220d1a16809995da0127a7fa055 (patch) | |
tree | 5f7abfde3cefad3661d9512381e03d12a0b6e49d /config | |
parent | 21666e0bc0ccaaffcb7ee61782374ef591fbb7b6 (diff) | |
download | nextcloud-server-8c0f8db6ca3d1220d1a16809995da0127a7fa055.tar.gz nextcloud-server-8c0f8db6ca3d1220d1a16809995da0127a7fa055.zip |
feat(config): add `maximum.supported.desktop.version`
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'config')
-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 96377b7dbf0..ab094c09fb2 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2137,6 +2137,15 @@ $CONFIG = [ 'minimum.supported.desktop.version' => '2.3.0', /** + * The maximum Nextcloud desktop client version that will be allowed to sync with + * this server instance. All connections made from later clients will be denied + * by the server. + * + * Defaults to 99.99.99 + */ +'maximum.supported.desktop.version' => '99.99.99', + +/** * Option to allow local storage to contain symlinks. * WARNING: Not recommended. This would make it possible for Nextcloud to access * files outside the data directory and could be considered a security risk. |