16 lines
692 B
Text
16 lines
692 B
Text
// vim: ft=jsonc
|
|
// put this file into the secrets subdir
|
|
{
|
|
"BORG_RSH": "ssh -i path_to_ssh_key_file",
|
|
"BORG_PASSPHRASE": "somepassphrase",
|
|
"GOTIFY_TOKEN": "the_gotify_token_for_logging",
|
|
"BACKUP_DOCKER_DIR": "dir of the docker compose file",
|
|
"BACKUP_DIRS": ["list of dirs to backup"],
|
|
"REPO_SUBDIR": "nextcloud",
|
|
"BACKUP_USER": "username of the remote repo serving borg",
|
|
"EXCLUDE_DIRS": ["list of directories to exclude from the backup"],
|
|
"TIME_FORMAT": "utcnow:%Y-%m-%d_%H:%M:%S",
|
|
"MYSQL_DB": "database name",
|
|
"MYSQL_USER": "database user required for dumping the database",
|
|
"MYSQL_PASSWORD": "password required for dumping the database "
|
|
}
|