root: allow enabling s3 backup ssl verification
closes #1332 Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
f323c01bd8
commit
e512f085db
|
@ -372,6 +372,7 @@ if CONFIG.y("postgresql.s3_backup"):
|
||||||
"default_acl": "private",
|
"default_acl": "private",
|
||||||
"endpoint_url": CONFIG.y("postgresql.s3_backup.host"),
|
"endpoint_url": CONFIG.y("postgresql.s3_backup.host"),
|
||||||
"location": CONFIG.y("postgresql.s3_backup.location", ""),
|
"location": CONFIG.y("postgresql.s3_backup.location", ""),
|
||||||
|
"verify": not CONFIG.y_bool("postgresql.s3_backup.insecure_skip_verify", False),
|
||||||
}
|
}
|
||||||
j_print(
|
j_print(
|
||||||
"Database backup to S3 is configured",
|
"Database backup to S3 is configured",
|
||||||
|
|
|
@ -23,6 +23,21 @@ All of these variables can be set to values, but you can also use a URI-like for
|
||||||
- `AUTHENTIK_POSTGRESQL__PORT`: Database port, defaults to 5432
|
- `AUTHENTIK_POSTGRESQL__PORT`: Database port, defaults to 5432
|
||||||
- `AUTHENTIK_POSTGRESQL__PASSWORD`: Database password, defaults to the environment variable `POSTGRES_PASSWORD`
|
- `AUTHENTIK_POSTGRESQL__PASSWORD`: Database password, defaults to the environment variable `POSTGRES_PASSWORD`
|
||||||
|
|
||||||
|
### PostgreSQL Backup Settings
|
||||||
|
|
||||||
|
Optionally enable automated database backups to S3 or S3-compatible storages.
|
||||||
|
|
||||||
|
- `AUTHENTIK_POSTGRESQL__S3_BACKUP__ACCESS_KEY`: S3 Access Key
|
||||||
|
- `AUTHENTIK_POSTGRESQL__S3_BACKUP__SECRET_KEY`: S3 Secret Key
|
||||||
|
- `AUTHENTIK_POSTGRESQL__S3_BACKUP__BUCKET`: S3 Bucket
|
||||||
|
- `AUTHENTIK_POSTGRESQL__S3_BACKUP__REGION`: S3 Region, defaults to `eu-central-1`
|
||||||
|
- `AUTHENTIK_POSTGRESQL__S3_BACKUP__LOCATION`: Relative Location of the files to the bucket. Defaults to the root of the bucket.
|
||||||
|
|
||||||
|
To use an S3-compatible storage, set the following settings.
|
||||||
|
|
||||||
|
- `AUTHENTIK_POSTGRESQL__S3_BACKUP__HOST`: URL to the Service, for example `https://play.min.io`
|
||||||
|
- `AUTHENTIK_POSTGRESQL__S3_BACKUP__INSECURE_SKIP_VERIFY`: Set to `true` to disable SSL Certificate verification.
|
||||||
|
|
||||||
## Redis Settings
|
## Redis Settings
|
||||||
|
|
||||||
- `AUTHENTIK_REDIS__HOST`: Hostname of your Redis Server
|
- `AUTHENTIK_REDIS__HOST`: Hostname of your Redis Server
|
||||||
|
|
Reference in New Issue