Deploy to valhalla / deploy (push) Has been cancelled
Native OAuth/OIDC for Homarr, BookStack, Gitea, and MinIO console; forward_auth with local auth disabled for code-server, uptime, and kopia; Caddy and Authentik scripts updated to match.
27 lines
1.2 KiB
Bash
27 lines
1.2 KiB
Bash
# resume stack secrets — injected into all services via env_file.
|
|
# Var names are exactly what each container reads (no ${VAR} interpolation).
|
|
# Components are duplicated into composites (DATABASE_URL embeds
|
|
# POSTGRES_PASSWORD; STORAGE_* mirror MINIO_*) — keep them in sync on rotation.
|
|
|
|
# postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
|
|
# minio (resume-minio service)
|
|
MINIO_ROOT_USER=minioadmin
|
|
MINIO_ROOT_PASSWORD=minioadmin
|
|
MINIO_OIDC_CLIENT_ID=1jC2ChsCjdh7srOKtr9Jzv1l2RF8omrzshEpAESa
|
|
MINIO_OIDC_CLIENT_SECRET=66KML3RcsdcStPO6FIe04cCRyLTztfUDdHcpkIVImUO6WTTHkAFtao4GfZYu9yq4NvFGWxztTv7M8uGZBi4xaVUtJr3K3GU47pLaaWwF1WMsidsRTy760QUJxsUq3i9C
|
|
|
|
# browserless chrome auth token (chrome reads TOKEN, the app reads PRINTER_TOKEN)
|
|
TOKEN=chrome_token
|
|
PRINTER_TOKEN=chrome_token
|
|
|
|
# reactive-resume app
|
|
DATABASE_URL=postgresql://postgres:postgres@postgres:5432/postgres
|
|
STORAGE_ACCESS_KEY=minioadmin
|
|
STORAGE_SECRET_KEY=minioadmin
|
|
# Auth/JWT signing secret for Reactive Resume.
|
|
# Pinned to the running value so recreating the container keeps sessions valid.
|
|
# Rotate with: openssl rand -hex 64
|
|
AUTH_SECRET=1b7e96f61f080d04d4bf673d9ea1d9349eb7693cddee5772b6c3f153c88032db5b97efd8570087bc6f340d2cd874aabc1e5c681bc22889921240d6a23738bc7f
|