change default of passcrypt to bcrypt #2936

This commit is contained in:
Phy 2019-12-11 11:05:51 -05:00
parent 6e0d355828
commit 9ec1015a9e
No known key found for this signature in database
GPG Key ID: D475AA55A8144239
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ $conf['hidepages'] = ''; //Regexp for pages to be skipped from
$conf['useacl'] = 0; //Use Access Control Lists to restrict access?
$conf['autopasswd'] = 1; //autogenerate passwords and email them to user
$conf['authtype'] = 'authplain'; //which authentication backend should be used
$conf['passcrypt'] = 'smd5'; //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411)
$conf['passcrypt'] = 'bcrypt'; //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411,bcrypt)
$conf['defaultgroup']= 'user'; //Default groups new Users are added to
$conf['superuser'] = '!!not set!!'; //The admin can be user or @group or comma separated list user1,@group1,user2
$conf['manager'] = '!!not set!!'; //The manager can be user or @group or comma separated list user1,@group1,user2