Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-01-31 22:02:21 +0300
committerJoas Schilling <coding@schilljs.com>2022-02-01 16:31:51 +0300
commit83c1d1ef3aba791b1555a6b5e187d64850f0a84e (patch)
tree07d9928614ec4dbcec81fa9347d2785edf130052 /config/config.sample.php
parent0818069dac7ba9d7a282059436b1c32d2a278561 (diff)
Allow to disable AuthToken v1
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'config/config.sample.php')
-rw-r--r--config/config.sample.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 0633b94aada..85edd4cdf03 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -304,6 +304,16 @@ $CONFIG = [
'auth.bruteforce.protection.enabled' => true,
/**
+ * Whether the authtoken v1 provider should be skipped
+ *
+ * The v1 provider is deprecated and removed in Nextcloud 24 onwards. It can be
+ * disabled already when the instance was installed after Nextcloud 14.
+ *
+ * Defaults to ``false``
+ */
+'auth.authtoken.v1.disabled' => false,
+
+/**
* By default WebAuthn is available but it can be explicitly disabled by admins
*/
'auth.webauthn.enabled' => true,