14 lines
528 B
Plaintext
Executable File
14 lines
528 B
Plaintext
Executable File
<?php
|
|
|
|
$db_port = 5432;
|
|
$db_host = "localhost";
|
|
$db_name = "oauth_db";
|
|
$db_type = "pgsql";
|
|
$db_user = "oauth";
|
|
$db_pass = "oauth_secure-pass";
|
|
$dsn = $db_type . ":dbname=" . $db_name . ";host=" . $db_host . ";port=" . $db_port;
|
|
|
|
/* Uncomment the line below to set date.timezone to avoid E.Notice raise by strtotime() (in Pdo.php)
|
|
* If date.timezone is not defined in php.ini or with this function, Mattermost could return a bad token request error
|
|
*/
|
|
//date_default_timezone_set ('Europe/Paris'); |