CodeIgniter Database Configuration Exposed

# Database Connection (EXPOSED)
$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'codeigniter-exposed-db.internal',
    'username' => 'ci_exposed_user',
    'password' => 'CodeIgniterExposedPassword2024!Secret',
    'database' => 'codeigniter_exposed_production',
    'dbdriver' => 'mysqli',
    'dbprefix' => '',
    'pconnect' => FALSE,
    'db_debug' => TRUE,
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
);

# API Keys (EXPOSED)
$config['api_key'] = 'codeigniter-exposed-api-key-abc123def456';
$config['jwt_secret'] = 'codeigniter-exposed-jwt-secret-xyz789';

