29 lines
517 B
TOML
29 lines
517 B
TOML
# name
|
|
name = "general"
|
|
|
|
# cron as in https://lib.rs/crate/cron
|
|
# <second> <minute> <hours> <day of month> <month> <day of the week>
|
|
cron = "0 0 2 * * *"
|
|
|
|
# retention on local server
|
|
local_retention_time = "1d"
|
|
|
|
# retention on the ftp server
|
|
remote_retention_time = "60d"
|
|
|
|
# ??? - Likely the local path
|
|
backups_dir = "/data/backups"
|
|
|
|
# base dir of what to backup
|
|
base_dir = "/host/srv"
|
|
paths = [
|
|
"cryptpad",
|
|
"gitlab",
|
|
"dendrite"
|
|
]
|
|
|
|
# run pre-backup
|
|
pre_commands = []
|
|
# run post-backup
|
|
post_commands = []
|
|
|