lib: disable backup by default, add note to configuration
This commit is contained in:
parent
84b18fff96
commit
2997542114
|
@ -6,7 +6,7 @@ postgresql:
|
||||||
port: 5432
|
port: 5432
|
||||||
password: 'env://POSTGRES_PASSWORD'
|
password: 'env://POSTGRES_PASSWORD'
|
||||||
backup:
|
backup:
|
||||||
enabled: true
|
enabled: false
|
||||||
s3_backup:
|
s3_backup:
|
||||||
access_key: ""
|
access_key: ""
|
||||||
secret_key: ""
|
secret_key: ""
|
||||||
|
|
|
@ -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
|
### 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.
|
Optionally enable automated database backups to S3 or S3-compatible storages.
|
||||||
|
|
||||||
|
|
Reference in New Issue