Update config.php
This commit is contained in:
parent
d5ddc0bb9a
commit
90c9d913b1
1 changed files with 8 additions and 3 deletions
11
config.php
11
config.php
|
@ -1,11 +1,16 @@
|
|||
<?php
|
||||
|
||||
# MariaDB/MySQL database settings
|
||||
|
||||
return array(
|
||||
|
||||
# MariaDB/MySQL database settings
|
||||
|
||||
"db_host" => "localhost",
|
||||
"db_port" => 3306,
|
||||
"db_name" => "mydatabase",
|
||||
"db_user" => "myusername",
|
||||
"db_pass" => "myverysecretpassword"
|
||||
"db_pass" => "myverysecretpassword",
|
||||
|
||||
# Salt for password hashing
|
||||
|
||||
"salt" => "insert a really long random string here"
|
||||
);
|
Loading…
Reference in a new issue