2024-07-13 10:07:39 +01:00
|
|
|
[config]
|
|
|
|
# Used for authenticating the backup requests. Change to a random password, and keep the same on both the client and server.
|
2024-07-13 17:13:57 +01:00
|
|
|
BACKUP_KEY = supersecretkey
|
2024-07-13 10:07:39 +01:00
|
|
|
# Used for encrypting the backup files during transfer. Change to a random password, and keep the same on both the client and server.
|
2024-07-13 17:13:57 +01:00
|
|
|
CRYPTO_KEY = supersecretkey
|
2024-07-13 10:07:39 +01:00
|
|
|
# How often the client should backup in seconds. Default is 86400 seconds (24 hours).
|
2024-07-13 17:13:57 +01:00
|
|
|
BACKUP_INTERVAL = 86400
|
2024-07-13 10:07:39 +01:00
|
|
|
# The URL of the server to send the backups to.
|
2024-07-13 17:13:57 +01:00
|
|
|
REMOTE_URL = http://example.org:8080/api/backup
|
2024-07-13 10:07:39 +01:00
|
|
|
# The file to backup, relative to where the command is run.
|
2024-07-13 17:13:57 +01:00
|
|
|
FILE_LOCATION = /path/to/file
|