31 lines
646 B
PHP
31 lines
646 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* OSB Database configuration
|
|
*
|
|
* @package OSB
|
|
* @category Configuration
|
|
* @author Deon George
|
|
* @copyright (c) 2010 Open Source Billing
|
|
* @license http://dev.osbill.net/license.html
|
|
*/
|
|
return array
|
|
(
|
|
'default' => array
|
|
(
|
|
'type' => 'mysql',
|
|
'connection' => array(
|
|
'hostname' => 'mysql.leenooks.vpn',
|
|
'username' => 'gh-webbill',
|
|
'password' => 'ws0593',
|
|
'persistent' => FALSE,
|
|
'database' => 'webghosb',
|
|
),
|
|
'table_prefix' => 'ab_',
|
|
'charset' => 'utf8',
|
|
'caching' => FALSE,
|
|
'profiling' => TRUE,
|
|
),
|
|
);
|
|
?>
|