homelab-blueprint/docker-compose-files/gramps-web/.env.sample
Brian Pooe 110d17f59f fix(gramps-web): correct container paths in config template and gate OIDC
The official grampsweb image works under /app, not /opt/gramps-web —
media/index/cache paths pointed at unmounted directories. OIDC is now
opt-in via GRAMPS_OIDC_ENABLED and all optional placeholders have
defaults so rendering works without an OIDC/email config.
2026-07-03 19:02:17 +02:00

15 lines
392 B
Text

# Gramps config
TREE=Family Tree
BASE_URL=https://gramps.home.example.com
# Generate with: openssl rand -base64 48
SECRET_KEY=
USER_DB_URI=sqlite:////app/users/users.sqlite
# SSO via OIDC (optional — set GRAMPS_OIDC_ENABLED=True and fill in below)
GRAMPS_OIDC_ENABLED=False
OIDC_ISSUER=
OIDC_CLIENT_ID=
OIDC_CLIENT_SECRET=
OIDC_NAME=
OIDC_AUTO_REDIRECT=False
OIDC_DISABLE_LOCAL_AUTH=False