lib: disable backup by default, add note to configuration

This commit is contained in:
Jens Langhammer 2022-01-24 10:00:15 +00:00
parent 84b18fff96
commit 2997542114
2 changed files with 6 additions and 2 deletions

View File

@ -6,7 +6,7 @@ postgresql:
port: 5432
password: 'env://POSTGRES_PASSWORD'
backup:
enabled: true
enabled: false
s3_backup:
access_key: ""
secret_key: ""

View File

@ -25,7 +25,11 @@ All of these variables can be set to values, but you can also use a URI-like for
### PostgreSQL Backup Settings
- `AUTHENTIK_POSTGRESQL__BACKUP__ENABLED`: Controls if the inbuilt backup-mechanism is enabled, defaults to true (new in 2021.10).
:::info
The integrated backup is deprecated in 2022.1 and will be removed in a future version.
:::
- `AUTHENTIK_POSTGRESQL__BACKUP__ENABLED`: Controls if the inbuilt backup-mechanism is enabled, defaults to false (new in 2021.10).
Optionally enable automated database backups to S3 or S3-compatible storages.