echa un vistazo en index.php
para cada aplicación:
/*
* -------------------------------------------------------------------
* 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';
nunca he utilizado personalmente esto, pero parece sugerir que cada aplicación por separado puede anular los ajustes en config.php
usando una aplicación compartida. Por lo que debe ser capaz de hacer algo como esto en cada archivo de índice individual:
$assign_to_config['log_threshold'] = 0;
// OR
$assign_to_config['log_path'] = 'app3/logs/';