Also various fixes for clean phan run Update config base for array type host settings and no long single entries
26 lines
664 B
PHP
Executable File
26 lines
664 B
PHP
Executable File
<?php
|
|
/********************************************************************
|
|
* AUTHOR: Clemens Schwaighofer
|
|
* CREATED: 2018/10/11
|
|
* SHORT DESCRIPTION:
|
|
* configuration file for database settings
|
|
* HISTORY:
|
|
*********************************************************************/
|
|
|
|
// please be VERY carefull only to change the right side
|
|
$DB_CONFIG = array (
|
|
'test' => array (
|
|
'db_name' => 'gullevek',
|
|
'db_user' => 'gullevek',
|
|
'db_pass' => 'gullevek',
|
|
'db_host' => 'db.tokyo.tequila.jp',
|
|
'db_port' => 5432,
|
|
'db_schema' => 'public',
|
|
'db_type' => 'pgsql',
|
|
'db_encoding' => '',
|
|
'db_ssl' => 'disable' // allow, disable, require, prefer
|
|
)
|
|
);
|
|
|
|
// __END__
|