photo/application/config/database.php

32 lines
853 B
PHP
Raw Normal View History

2014-06-30 04:22:57 +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.
*/
2014-07-09 03:04:56 +00:00
'hostname' => 'mysql.leenooks.vpn',
'database' => 'weblnphoto',
2015-05-15 04:12:10 +00:00
'username' => 'ln-photo',
2014-07-09 03:04:56 +00:00
'password' => 'Ph0T0!',
2014-06-30 04:22:57 +00:00
'persistent' => TRUE,
),
'table_prefix' => '',
'charset' => 'utf8',
'caching' => FALSE,
),
);