diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-06-08 12:31:37 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-06-08 12:31:37 +0200 |
commit | 6119f05ac015b71d94318bf759b4fcaefe4650af (patch) | |
tree | d4289faaa92a83da055dfdc24e4ba2737d62263f /config | |
parent | 4d3b7574f3dcab1c79c27e93122dcc7d1ac103b2 (diff) | |
download | nextcloud-server-6119f05ac015b71d94318bf759b4fcaefe4650af.tar.gz nextcloud-server-6119f05ac015b71d94318bf759b4fcaefe4650af.zip |
generate a random salt during installation and store it in the config.php. use it to salt the password hashing.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 6ea23ee4bcf..0c0ace521ec 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -24,6 +24,9 @@ $CONFIG = array( /* Prefix for the OwnCloud tables in the database */ "dbtableprefix" => "", +/* Define the salt used to hash the user passwords. All your user passwords are lost if you lose this string. */ +"passwordsalt" => "", + /* Force use of HTTPS connection (true = use HTTPS) */ "forcessl" => false, |