Also various fixes for clean phan run Update config base for array type host settings and no long single entries
34 lines
871 B
PHP
Executable File
34 lines
871 B
PHP
Executable File
<?php
|
|
/********************************************************************
|
|
* AUTHOR: Clemens Schwaighofer
|
|
* CREATED: 2018/10/11
|
|
* SHORT DESCRIPTION:
|
|
* configuration file for core host settings
|
|
* - DB access name (array group from config.db)
|
|
* - location (test/stage/live)
|
|
* - debug flag (true/false)
|
|
* - DB path (eg PUBLIC_SCHEMA)
|
|
* - stie lang
|
|
* HISTORY:
|
|
*********************************************************************/
|
|
|
|
// each host has a different db_host
|
|
$SITE_CONFIG = array (
|
|
// development host
|
|
'soba.tokyo.tequila.jp' => array (
|
|
// db config selection
|
|
'db_host' => 'test',
|
|
// other db connections
|
|
// 'db_host_target' => '',
|
|
// 'db_host_other' => '',
|
|
// location flagging (test/dev/live) for debug output
|
|
'location' => 'test',
|
|
// show DEBUG override
|
|
'debug_flag' => true,
|
|
// site language
|
|
'site_lang' => 'en_utf8',
|
|
)
|
|
);
|
|
|
|
// __END__
|