Посмотрите index.php
для каждого приложения:
/*
* -------------------------------------------------------------------
* CUSTOM CONFIG VALUES
* -------------------------------------------------------------------
*
* The $assign_to_config array below will be passed dynamically to the
* config class when initialized. This allows you to set custom config
* items or override any default config values found in the config.php file.
* This can be handy as it permits you to share one application between
* multiple front controller files, with each file containing different
* config values.
*
* Un-comment the $assign_to_config array below to use this feature
*
*/
// $assign_to_config['name_of_config_item'] = 'value of config item';
Я никогда не использовал это лично, но кажется, что каждое отдельное приложение может переопределить настройки в config.php
с помощью общего приложения. Таким образом, вы должны иметь возможность сделать что-то подобное в каждом отдельном индексном файле:
$assign_to_config['log_threshold'] = 0;
// OR
$assign_to_config['log_path'] = 'app3/logs/';