summaryrefslogtreecommitdiffstats
path: root/config/config.sample.php
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-02-18 14:34:09 +0100
committerGitHub <noreply@github.com>2022-02-18 14:34:09 +0100
commit806d7024587a15cfef379d396e3b1dfe31975771 (patch)
treeff07afa8b8d2bbb7947fb7ab4634c9bb5826edc2 /config/config.sample.php
parent5ecf7be040d9f13c448010f257ef8d38de395f89 (diff)
parentad55d3b4c0abb48c7f640aee54728bee6d03c96d (diff)
downloadnextcloud-server-806d7024587a15cfef379d396e3b1dfe31975771.tar.gz
nextcloud-server-806d7024587a15cfef379d396e3b1dfe31975771.zip
Merge pull request #30958 from nextcloud/backport/30949/stable22
[stable22] Allow to disable AuthToken v1
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 432793c5787..783d9daea39 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,