gastrodata/config.php

16 lines
318 B
PHP
Raw Permalink Normal View History

2020-08-02 07:10:47 +00:00
<?php
return array(
2020-08-09 17:00:38 +00:00
# MariaDB/MySQL database settings
2020-08-02 07:10:47 +00:00
"db_host" => "localhost",
"db_port" => 3306,
"db_name" => "mydatabase",
"db_user" => "myusername",
2020-08-09 17:00:38 +00:00
"db_pass" => "myverysecretpassword",
2020-08-09 17:03:58 +00:00
# Salt for session token hashing
2020-08-09 17:00:38 +00:00
"salt" => "insert a really long random string here"
2020-08-02 07:10:47 +00:00
);