22 lines
524 B
Bash
22 lines
524 B
Bash
# SSH Settings
|
|
HA_SSH_KEY="$HOME/.ssh/id_rsa"
|
|
HA_SSH_USER="youruser"
|
|
|
|
# Backup destination
|
|
BACKUP_DEST="/your/backup/directory"
|
|
|
|
# Remote file path (can be overridden)
|
|
REMOTE_FILE="/opt/AdGuardHome/AdGuardHome.yaml"
|
|
|
|
# Servers to backup (space-separated)
|
|
SERVER_LIST="server1.example.com server2.example.com 192.168.1.100"
|
|
|
|
# Notifications (optional)
|
|
NTFY_ENABLED=false
|
|
NTFY_SERVER="https://ntfy.yourdomain.com"
|
|
NTFY_TOPIC="adguard-backups"
|
|
|
|
DISCORD_ENABLED=false
|
|
DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/..."
|
|
|