postgresql.conf 562 B

1234567891011121314151617181920212223242526
  1. # DB engine
  2. DBENGINE="postgresql"
  3. # Substitute user to run dump commands
  4. SU_USERNAME="postgres"
  5. # Backup directory
  6. BACKUPDIR="/var/lib/autodbbackup/${DBENGINE}"
  7. # Include CREATE DATABASE in backups?
  8. CREATE_DATABASE="no"
  9. # Which day do you want weekly backups? (1 to 7 where 1 is Monday)
  10. # When set to 0, weekly backups are disabled
  11. DOWEEKLY=0
  12. # Which day do you want monthly backups?
  13. # When set to 0, monthly backups are disabled
  14. DOMONTHLY=0
  15. # Backup retention count for daily backups, older backups are removed.
  16. BRDAILY=7
  17. # Compression tool
  18. COMP="zstd"