summaryrefslogtreecommitdiffstats
path: root/config/config.sample.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-01-29 21:39:58 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2020-02-03 21:41:17 +0100
commit0d651f106c3bd317835c15cc82f3689d71432d48 (patch)
tree24e19f1378cd7f5aa9f26e882b5d1fac2478ff8c /config/config.sample.php
parent4503cff51a5a075291ac63d1ae5472ae49b97679 (diff)
downloadnextcloud-server-0d651f106c3bd317835c15cc82f3689d71432d48.tar.gz
nextcloud-server-0d651f106c3bd317835c15cc82f3689d71432d48.zip
Allow selecting the hashing algorithm
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'config/config.sample.php')
-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 e1c62087108..2894bc5debc 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1435,6 +1435,16 @@ $CONFIG = array(
/**
* Hashing
+ */
+
+/**
+ * By default Nextcloud will use the Argon2 password hashing if available.
+ * However if for whatever reason you want to stick with the PASSWORD_DEFAULT
+ * of your php version. Then set the setting to true.
+ */
+'hashing_default_password' => false,
+
+/**
*
* Nextcloud uses the Argon2 algorithm (with PHP >= 7.2) to create hashes by its
* own and exposes its configuration options as following. More information can