diff options
author | Rayn0r <andrew@ilpss8.myfirewall.org> | 2018-10-30 20:54:19 +0100 |
---|---|---|
committer | Rayn0r <andrew@ilpss8.myfirewall.org> | 2018-10-30 20:54:19 +0100 |
commit | 2a9b56f77bf4622b4dbc8e954fcfc2a3226d3110 (patch) | |
tree | aea29b849d1ff0a5e9f1676d40245b2f0421b411 /config/config.sample.php | |
parent | 82c2c10b2532b0968ada451d72ec04b33230af0e (diff) | |
download | nextcloud-server-2a9b56f77bf4622b4dbc8e954fcfc2a3226d3110.tar.gz nextcloud-server-2a9b56f77bf4622b4dbc8e954fcfc2a3226d3110.zip |
added sample config for turning off form autocompletion on login page
Signed-off-by: Rayn0r <Andre.Weidemann@web.de>
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 10 |
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, ); |