This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
tsmac/application/config/database.php

32 lines
853 B
PHP
Raw Normal View History

2014-10-06 10:57:54 +00:00
<?php defined('SYSPATH') OR die('No direct access allowed.');
return array
(
'default' => array
(
'type' => 'MySQL',
'connection' => array(
/**
* The following options are available for MySQL:
*
* string hostname server hostname, or socket
* string database database name
* string username database username
* string password database password
* boolean persistent use persistent connections?
* array variables system variables as "key => value" pairs
*
* Ports and sockets may be appended to the hostname.
*/
'hostname' => 'mysql.leenooks.vpn',
'database' => 'weblntsmac',
'username' => 'ln-tsmac',
'password' => 'TSM',
'persistent' => TRUE,
),
'table_prefix' => 'tac_',
'charset' => 'utf8',
'caching' => TRUE,
),
);