Spotter-VM/ushahidi/lxc/srv/ushahidi/platform/application/config/init.php

35 lines
1.3 KiB
PHP

<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Kohana Init Config
*
* @author Ushahidi Team <team@ushahidi.com>
* @package Ushahidi\Application\Config
* @copyright 2013 Ushahidi
* @license https://www.gnu.org/licenses/agpl-3.0.html GNU Affero General Public License Version 3 (AGPL3)
*/
/**
* Initialize Kohana, setting the default options.
*
* The following options are available:
*
* - string base_url path, and optionally domain, of your application NULL
* - string index_file name of your index file, usually "index.php" index.php
* - string charset internal character set used for input and output utf-8
* - string cache_dir set the internal cache directory APPPATH/cache
* - integer cache_life lifetime, in seconds, of items cached 60
* - boolean errors enable or disable error handling TRUE
* - boolean profile enable or disable internal profiling TRUE
* - boolean caching enable or disable internal caching FALSE
* - boolean expose set the X-Powered-By header FALSE
*/
return array(
'base_url' => '/platform',
'index_file' => FALSE,
'charset' => 'utf-8',
'errors' => TRUE,
'profile' => FALSE,
'caching' => FALSE,
);