blob: 503e1ace9b8594d6cb05d7f787cc3399c212b719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
backup_domain: backup.{{ domain }}
backup_base: "{{ swarm_base }}/backup"
backup_retention_days: 10
ntfy_topic: "{{ ntfy_topic }}"
blocklist: "node_modules .git __pycache__ /oci/ /backup/ node_modules .git __pycache__ .cache tmp temp build dist .yarn .npm cache .logs logs"
# Borg backup settings
borg_repo: "{{ backups_borg_repo }}" # Can be local path or remote (ssh://user@host/path)
borg_passphrase: "{{ backups_borg_passphrase }}"
borg_compression: "zstd,3"
borg_keep_daily: 7
borg_keep_weekly: 4
borg_keep_monthly: 6
|