30 lines
915 B
PHP
30 lines
915 B
PHP
<?php
|
|
/**
|
|
* Local Configuration Override
|
|
*
|
|
* This configuration override file is for overriding environment-specific and
|
|
* security-sensitive configuration information. Copy this file without the
|
|
* .dist extension at the end and populate values as needed.
|
|
*
|
|
* @NOTE: This file is ignored from Git by default with the .gitignore included
|
|
* in ZendSkeletonApplication. This is a good practice, as it prevents sensitive
|
|
* credentials from accidentally being committed into version control.
|
|
*/
|
|
|
|
return array(
|
|
'sanjiangyuan' => array(
|
|
'driver' => 'Pdo_Pgsql',
|
|
'hostname' => 'localhost',
|
|
'database' => 'metadata',
|
|
'username' => 'gis',
|
|
'password' => 'gispassword',
|
|
),
|
|
'qinghaihu' => array(
|
|
'driver' => 'Pdo_Pgsql',
|
|
'hostname' => '210.77.68.40',
|
|
'database' => 'xining',
|
|
'username' => 'gis',
|
|
'password' => 'gispassword',
|
|
),
|
|
);
|