view slbackup.cfg.example @ 169:d9b9be9c4788

Make 'config' commandline option's backup location and secret settings optional, so that you can change the backup mode only.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 19 Sep 2017 13:42:44 +0300
parents 36c9cb759326
children
line wrap: on
line source

<?php
// "secret" used for authentication
$dataSecret = "pretendsecretpassword";

// Absolute path for storing the backup files
$dataPath = "/some/path/syntilista_backup/";

// Backup filename prefix
//$dataName = "backup";

// Backup filename suffix/extension
//$dataSuffix = ".sqlite3";

// Maximum accepted size of file(s) to backup
// NOTE! PHP upload size has to be at least this!
//$dataMaxSize = 1024 * 1024;

// How many backups to keep?
//$dataBackups = 24;

?>