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:
authorRayn0r <andrew@ilpss8.myfirewall.org>2018-10-30 22:54:19 +0300
committerRayn0r <andrew@ilpss8.myfirewall.org>2018-10-30 22:54:19 +0300
commit2a9b56f77bf4622b4dbc8e954fcfc2a3226d3110 (patch)
treeaea29b849d1ff0a5e9f1676d40245b2f0421b411 /config
parent82c2c10b2532b0968ada451d72ec04b33230af0e (diff)
added sample config for turning off form autocompletion on login page
Signed-off-by: Rayn0r <Andre.Weidemann@web.de>
Diffstat (limited to 'config')
-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 9a5648c95df..1cdf3eb535e 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1648,4 +1648,14 @@ $CONFIG = array(
* If this is set to "false" it will not show the link.
*/
'simpleSignUpLink.shown' => true,
+
+/**
+ * By default autocompletion is enabled for the login form on Nextcloud's login page.
+ * While this is enabled, browsers are allowed to "remember" login names and such.
+ * Some companies require it to be disabled to comply with their security policy.
+ *
+ * Simply set this property to "false", if you want to turn this feature off.
+ */
+
+'login_form_autocomplete' => true,
);