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:
authorFrank Karlitschek <frank@owncloud.org>2012-06-08 14:31:37 +0400
committerFrank Karlitschek <frank@owncloud.org>2012-06-08 14:31:37 +0400
commit6119f05ac015b71d94318bf759b4fcaefe4650af (patch)
treed4289faaa92a83da055dfdc24e4ba2737d62263f /config
parent4d3b7574f3dcab1c79c27e93122dcc7d1ac103b2 (diff)
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.php3
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,