0ce030275b
- Add OIDC HMAC and client secrets to authelia/.env.example - Create ollama/.env.example with OIDC client secret placeholder
12 lines
424 B
Bash
12 lines
424 B
Bash
# Authelia secrets — generate values with:
|
|
# openssl rand -hex 32 (for JWT and session secrets)
|
|
# openssl rand -hex 16 (for storage encryption key)
|
|
AUTHELIA_JWT_SECRET=
|
|
AUTHELIA_SESSION_SECRET=
|
|
AUTHELIA_STORAGE_ENCRYPTION_KEY=
|
|
|
|
# OIDC client secrets — generate with: openssl rand -hex 32
|
|
AUTHELIA_IDENTITY_PROVIDERS_OIDC_HMAC_SECRET=
|
|
AUTHELIA_OIDC_CLIENT_SECRET_LINKDING=
|
|
AUTHELIA_OIDC_CLIENT_SECRET_OPEN_WEBUI=
|