2be296ffa0
Reorganize the gethomepage dashboard from site-based (PFI-ANA, ESH, NH3) to function-first grouping (Monitoring, AI Systems, Apps, Media, Games, Infra-<site>, Service Networking). Canonical config now tracked in configs/homepage/ with Plex/Jellyfin widget keys moved to env substitution. Label sweep across fleet compose files: - beszel, dozzle, backrest -> Monitoring - rest-server-ana -> Service Networking Healthcheck fixes (previous wget/curl paths broke on distroless + --private-repos 401): - beszel hub: /beszel health --url ... - beszel agent: /agent health (newly added) - rest-server: nc -z localhost 8000 (TCP probe) Group name originally "Wiring / Plumbing" collapsed to single-word group on homepage's parser; renamed to "Service Networking" everywhere.
21 lines
725 B
Bash
21 lines
725 B
Bash
# Homepage environment variables.
|
|
#
|
|
# Homepage substitutes any var matching `HOMEPAGE_VAR_*` or
|
|
# `HOMEPAGE_FILE_*` into any config file (services.yaml, proxmox.yaml, ...).
|
|
# Reference them in YAML with the literal string `{{HOMEPAGE_VAR_NAME}}`.
|
|
#
|
|
# Copy to .env next to the homepage compose file on esh-docker-vm. Never
|
|
# commit the real .env — it holds widget API keys.
|
|
|
|
# Plex widget token (Plex -> account -> get X-Plex-Token)
|
|
HOMEPAGE_VAR_PLEX_KEY=
|
|
|
|
# Jellyfin API key (Dashboard -> API Keys)
|
|
HOMEPAGE_VAR_JELLYFIN_KEY=
|
|
|
|
# Proxmox widget tokens (one per hypervisor; see proxmox.yaml comments)
|
|
# HOMEPAGE_VAR_PFI_PVE_TOKEN=
|
|
# HOMEPAGE_VAR_NH3_PVE_TOKEN=
|
|
# HOMEPAGE_VAR_ESH_PVE_TOKEN=
|
|
# HOMEPAGE_VAR_ESH_PVE_NAS_TOKEN=
|