| 123456789101112 |
- <?php
- // Copy this file to config.php and change the password before deploying.
- define("BACKUP_SERVER_PASSWORD", "change-me");
- // Optional stronger alternative:
- // define("BACKUP_SERVER_PASSWORD_HASH", "$2y$10$replace-this-with-a-precomputed-password-hash");
- define("BACKUP_SERVER_RETENTION", 30);
- define("BACKUP_SERVER_BACKUP_DIR", __DIR__ . "/backups/");
- define("BACKUP_SERVER_INDEX_FILE", BACKUP_SERVER_BACKUP_DIR . "index.json");
- define("BACKUP_SERVER_SETTINGS_FILE", BACKUP_SERVER_BACKUP_DIR . "settings.json");
|