Files
docker-infrastructure/authelia/.env.example
T
poprhythm 0ce030275b Add OIDC secret placeholders to .env.example files
- Add OIDC HMAC and client secrets to authelia/.env.example
- Create ollama/.env.example with OIDC client secret placeholder
2026-02-26 01:42:34 +00:00

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=