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
path: root/config
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-10-16 03:08:05 +0400
committerLukas Reschke <lukas@statuscode.ch>2012-10-16 03:08:05 +0400
commite299c241df23770efbb6f5c833d77edcdeed7410 (patch)
tree078ed78eb927b4b05d80b8b06f318d4b306e9596 /config
parentc85c35dfae8fa7135d42c905f955ff71af849b6a (diff)
Make enhanced auth configurable
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 762633c7832..f2fd948418f 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -30,6 +30,9 @@ $CONFIG = array(
/* Force use of HTTPS connection (true = use HTTPS) */
"forcessl" => false,
+/* Enhanced auth forces users to enter their password again when performing potential sensitive actions like creating or deleting users */
+"enhancedauth" => true,
+
/* Time in seconds how long an user is authenticated without entering his password again before performing sensitive actions like creating or deleting users etc...*/
"enhancedauthtime" => 15 * 60,