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
|
|
|
# The port burgerbackup runs on. Change to Port 80 if not using a reverse proxy.
|
2024-07-13 17:13:57 +01:00
|
|
|
PORT = 8080
|
2024-07-13 10:07:39 +01:00
|
|
|
# The host burgerbackup runs on. Change to 127.0.0.1 if using a reverse proxy.
|
2024-07-13 17:13:57 +01:00
|
|
|
HOST = 0.0.0.0
|
2024-07-13 10:07:39 +01:00
|
|
|
# The folder where the backups are stored, relative to where the command is run.
|
|
|
|
# It is recommended to use an absolute path
|
2024-07-13 17:13:57 +01:00
|
|
|
BACKUP_FOLDER = /path/to/backup/folder
|