Skip to content

Commit

Permalink
Make sure tsugi's config template is using a sha256 hashed password
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Jun 9, 2023
1 parent 5b52743 commit bbbf13a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setuptsugi/config.php
Expand Up @@ -149,7 +149,7 @@ function __the_end(){
// features of this application. It can be the plaintext password
// or a sha256 hash of the admin password. Please don't use either
// the 'tsugi' or the sha256 of 'tsugi' example values below.
$CFG->adminpw = $xerte_toolkits_site->admin_password;
$CFG->adminpw = 'sha256:' . $xerte_toolkits_site->admin_password;
// $CFG->adminpw = 'tsugi';
// $CFG->adminpw = 'sha256:9c0ccb0d53dd71b896cde69c78cf977acbcb36546c96bedec1619406145b5e9e';

Expand Down

0 comments on commit bbbf13a

Please sign in to comment.