123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- /**
- * Part of the Fuel framework.
- *
- * @package Fuel
- * @version 1.5
- * @author Fuel Development Team
- * @license MIT License
- * @copyright 2010 - 2013 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(
- /*
- * If you don't specify a DB configuration name when you create a connection
- * the configuration to be used will be determined by the 'active' value
- */
- 'active' => 'default',
- /**
- * Base PDO config
- */
- 'default' => array(
- 'type' => 'pdo',
- 'connection' => array(
- 'persistent' => false,
- 'compress' => false,
- ),
- 'identifier' => '`',
- 'table_prefix' => '',
- 'charset' => 'utf8',
- 'enable_cache' => true,
- 'profiling' => false,
- ),
- /**
- * Base MySQLi config
- *
- 'default' => array(
- 'type' => 'mysqli',
- 'connection' => array(
- 'hostname' => '',
- 'username' => '',
- 'password' => '',
- 'database' => '',
- 'persistent' => false,
- ),
- 'identifier' => '`',
- 'table_prefix' => '',
- 'charset' => 'utf8',
- 'enable_cache' => true,
- 'profiling' => false,
- ),
- */
- /**
- * Base Redis config
- */
- 'redis' => array(
- 'default' => array(
- 'hostname' => '127.0.0.1',
- 'port' => 6379,
- 'timeout' => null,
- )
- ),
- );
|