2024-11-06 18:45:55 +00:00
|
|
|
# Backup path
|
2024-11-06 17:57:19 +00:00
|
|
|
BACKUP_PATH="/path/to/backup/directory"
|
2024-11-06 18:45:55 +00:00
|
|
|
|
2024-11-06 20:05:21 +00:00
|
|
|
# Compression levels
|
|
|
|
ZSTD_LEVEL=5
|
|
|
|
GZIP_LEVEL=7
|
|
|
|
|
2024-11-06 18:45:55 +00:00
|
|
|
# Servers configuration
|
|
|
|
# Add as many as needed
|
|
|
|
|
|
|
|
# Database 1 configuration
|
|
|
|
DB1_HOST="localhost"
|
|
|
|
DB1_PORT="5432"
|
|
|
|
DB1_USER="user1"
|
2024-11-06 19:25:45 +00:00
|
|
|
# "custom" for .dump or "sql" for SQL compressed with Gzip
|
|
|
|
DB1_DUMP_FORMAT="custom"
|
2024-11-06 18:45:55 +00:00
|
|
|
|
|
|
|
# Database 2 configuration
|
|
|
|
#DB2_HOST="remote_host"
|
|
|
|
#DB2_PORT="5432"
|
|
|
|
#DB2_USER="user2"
|
|
|
|
#DB2_DUMP_FORMAT="sql"
|