18 lines
379 B
Plaintext
18 lines
379 B
Plaintext
# Backup path
|
|
BACKUP_PATH="/path/to/backup/directory"
|
|
|
|
# Servers configuration
|
|
# Add as many as needed
|
|
|
|
# Database 1 configuration
|
|
DB1_HOST="localhost"
|
|
DB1_PORT="5432"
|
|
DB1_USER="user1"
|
|
DB1_DUMP_FORMAT="custom" # "custom" for .dump or "sql" for SQL compressed with Gzip
|
|
|
|
# Database 2 configuration
|
|
#DB2_HOST="remote_host"
|
|
#DB2_PORT="5432"
|
|
#DB2_USER="user2"
|
|
#DB2_DUMP_FORMAT="sql"
|