<?php
declare(strict_types=1);

return [
    'app' => [
        'name' => 'Backup2',
        'timezone' => 'Europe/Prague',
        'base_url' => 'http://backup2.local',
        'storage_path' => '/www/backup2/backups',
        'log_path' => '/www/backup2/var/backup2.log',
    ],

    'backup2_db' => [
        'dsn' => 'mysql:host=127.0.0.1;dbname=backup2;charset=utf8mb4',
        'user' => 'backup2',
        'pass' => 'CHANGE_ME',
    ],

    'cdz_db' => [
        'dsn' => 'mysql:host=127.0.0.1;dbname=cdz;charset=utf8mb4',
        'user' => 'backup2_cdz',
        'pass' => 'CHANGE_ME',
    ],

    'ssh' => [
        'port' => 22,
        'timeout_seconds' => 20,
        'command_timeout_seconds' => 45,
        'mikrotik_export_command' => '/export compact',
        'ubnt_config_path' => '/var/tmp/system.cfg',
    ],

    'scheduler' => [
        'default_retry_minutes' => 30,
        'max_per_run' => 10,
    ],
];
