Fix prod encryption key
This commit is contained in:
parent
4688a73559
commit
4cd6b2131e
1 changed files with 4 additions and 0 deletions
|
|
@ -105,6 +105,7 @@ PG_PASS=$(openssl rand -base64 36 | tr -d '\n' | tr -d '/')
|
|||
AUTHENTIK_SECRET_KEY=$(openssl rand -base64 60 | tr -d '\n' | tr -d '/')
|
||||
AUTHENTIK_BOOTSTRAP_PASSWORD=$(openssl rand -base64 24 | tr -d '\n' | tr -d '/')
|
||||
AUTHENTIK_BOOTSTRAP_TOKEN=$(openssl rand -hex 32)
|
||||
ENCRYPTION_KEY=$(openssl rand -base64 36 | tr -d '\n' | tr -d '/')
|
||||
|
||||
print_success "Secrets generated"
|
||||
|
||||
|
|
@ -125,6 +126,9 @@ AUTHENTIK_BOOTSTRAP_PASSWORD=${AUTHENTIK_BOOTSTRAP_PASSWORD}
|
|||
AUTHENTIK_BOOTSTRAP_TOKEN=${AUTHENTIK_BOOTSTRAP_TOKEN}
|
||||
AUTHENTIK_ERROR_REPORTING=false
|
||||
|
||||
# Backend Encryption
|
||||
ENCRYPTION_KEY=${ENCRYPTION_KEY}
|
||||
|
||||
# OIDC Configuration (Production)
|
||||
OIDC_ISSUER=https://${AUTH_DOMAIN}/application/o/kaboot/
|
||||
OIDC_JWKS_URI=https://${AUTH_DOMAIN}/application/o/kaboot/jwks/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue