testing
[namibia] / config / autoload / local.php.dist
1 <?php
2 /**
3  * Local Configuration Override
4  *
5  * This configuration override file is for overriding environment-specific and
6  * security-sensitive configuration information. Copy this file without the
7  * .dist extension at the end and populate values as needed.
8  *
9  * @NOTE: This file is ignored from Git by default with the .gitignore included
10  * in ZendSkeletonApplication. This is a good practice, as it prevents sensitive
11  * credentials from accidentally being committed into version control.
12  */
13
14 return array(
15     // Whether or not to enable a configuration cache.
16     // If enabled, the merged configuration will be cached and used in
17     // subsequent requests.
18     //'config_cache_enabled' => false,
19     // The key used to create the configuration cache file name.
20     //'config_cache_key' => 'module_config_cache',
21     // The path in which to cache merged configuration.
22     //'cache_dir' =>  './data/cache',
23     // ...
24 );