<?php
// Copy to config.php and edit.

return [
  'db' => [
    'host' => 'localhost',
    'name' => 'ztg_killswitch',
    'user' => 'ztg_user',
    'pass' => 'password',
    'charset' => 'utf8mb4',
  ],

  // 32+ chars random string used for encryption + CSRF token derivation
  'app_key' => 'RLq80kV62sI90Lxbk4v3gxxAQz5M6sz2',

  // Session settings
  'session' => [
    'name' => 'ztgks',
    'secure' => true,   // set false if testing on http (not recommended)
    'httponly' => true,
    'samesite' => 'Lax',
  ],

  // Default revert window when clicking "Block (60m)"
  'default_revert_minutes' => 60,
];
