Fixes #5
parent
56c47c3352
commit
e6ef080de4
@ -1,18 +1,82 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Fuel is a fast, lightweight, community driven PHP 5.4+ framework.
|
||||||
|
*
|
||||||
|
* @package Fuel
|
||||||
|
* @version 1.8.1
|
||||||
|
* @author Fuel Development Team
|
||||||
|
* @license MIT License
|
||||||
|
* @copyright 2010 - 2018 Fuel Development Team
|
||||||
|
* @link http://fuelphp.com
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* NOTICE:
|
||||||
|
*
|
||||||
|
* If you need to make modifications to the default configuration, copy
|
||||||
|
* this file to your app/config folder, and make them in there.
|
||||||
|
*
|
||||||
|
* This will allow you to upgrade fuel without losing your custom config.
|
||||||
|
*/
|
||||||
return array(
|
return array(
|
||||||
'default' =>
|
/*
|
||||||
array(
|
* If you don't specify a DB configuration name when you create a connection
|
||||||
'type' => 'pdo',
|
* the configuration to be used will be determined by the 'active' value
|
||||||
'connection' =>
|
*/
|
||||||
array(
|
'active' => 'default',
|
||||||
'hostname' => NULL,
|
/**
|
||||||
'port' => '534654',
|
* Base PDO config
|
||||||
'database' => NULL,
|
*/
|
||||||
'username' => '514',
|
'default' => array(
|
||||||
'password' => '1',
|
'type' => 'pdo',
|
||||||
|
'connection' => array(
|
||||||
|
'dsn' => '',
|
||||||
|
'hostname' => '',
|
||||||
|
'username' => null,
|
||||||
|
'password' => null,
|
||||||
|
'database' => '',
|
||||||
|
'persistent' => false,
|
||||||
|
'compress' => false,
|
||||||
|
),
|
||||||
|
'identifier' => '`',
|
||||||
|
'table_prefix' => '',
|
||||||
|
'charset' => 'utf8',
|
||||||
|
'collation' => false,
|
||||||
|
'enable_cache' => true,
|
||||||
|
'profiling' => false,
|
||||||
|
'readonly' => false,
|
||||||
|
),
|
||||||
|
/**
|
||||||
|
* Base MySQLi config
|
||||||
|
*
|
||||||
|
'default' => array(
|
||||||
|
'type' => 'mysqli',
|
||||||
|
'connection' => array(
|
||||||
|
'dsn' => '',
|
||||||
|
'hostname' => '',
|
||||||
|
'username' => null,
|
||||||
|
'password' => null,
|
||||||
|
'database' => '',
|
||||||
|
'persistent' => false,
|
||||||
|
'compress' => false,
|
||||||
|
),
|
||||||
|
'identifier' => '`',
|
||||||
|
'table_prefix' => '',
|
||||||
|
'charset' => 'utf8',
|
||||||
|
'collation' => false,
|
||||||
|
'enable_cache' => false,
|
||||||
|
'profiling' => false,
|
||||||
|
'readonly' => false,
|
||||||
|
),
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Base Redis config
|
||||||
|
*/
|
||||||
|
'redis' => array(
|
||||||
|
'default' => array(
|
||||||
|
'hostname' => '127.0.0.1',
|
||||||
|
'port' => 6379,
|
||||||
|
'timeout' => null,
|
||||||
|
'database' => 0,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
'table_prefix' => 'plex_',
|
|
||||||
'charset' => 'utf8',
|
|
||||||
'enable_cache' => true,
|
|
||||||
),
|
|
||||||
);
|
);
|
Loading…
Reference in new issue