The board mixed tools with endpoints. A vLLM seat whose href is a /docs page
sat in the same band as ComfyUI; the MQTT broker and the RustDesk relay, which
have no page at all, sat in Apps; and `Service Networking` was thirteen members
spanning three AdGuards, five Dockges, two Traefiks and four headless agents.
Every group is now one of two kinds and they never mix. TOOLS are expanded and
sit at the top of their tab. ENDPOINTS — an API, a broker, a background agent,
an href that is /docs or /ping or nothing — carry `initiallyCollapsed: true`
and sit at the bottom. Collapsed is not hidden: the eyebrow and its rule still
render, so the tab still says the thing exists and one click expands it.
A second rule fell out of the same pass and now shapes the group boundaries: a
group's members should all carry a widget or none should. A stat strip makes a
card ~50px taller, so one widget card in a row of plain ones opens a void under
the plain ones. That is why AdGuard and Traefik get their own groups rather
than sharing one with Dockge, and it is most of why the old Service Networking
band looked broken. AdGuard (ANA) was the last short card in its row and now
carries the same query/blocked/latency strip as its two siblings — one
infra-ops AdGuard login authenticates against all three instances, verified
against each; it lives in that stack's .env on the host and is vaulted.
The sixteen GPU-backed model seats were deliberately NOT relabelled.
`homepage.group` is read at container creation, so clearer names for
`AI - Inference` and friends would have cost a recreate on six vLLM seats, four
eval seats and four TTS engines — multi-minute model reloads on endpoints peers
reach through the gateway. Order plus `initiallyCollapsed` buys the same
separation for nothing, so those names stay as they are on purpose.
28 containers that ARE cheap to bounce were relabelled, across five hosts, via
rerunnable elway playbooks. Their label steps are gated on the old value still
being present, so a second run reports skipped rather than churning. Two verify
steps were wrong on first contact and are fixed with the reason recorded: the
traefik check raced its own recreate, and asserting a model seat is "running"
cannot answer "did I bounce it" when a seat may be legitimately stopped —
container age can, and now does.
The canonical stacks/ tree was synced to the deployed labels afterwards, so
intent and reality agree again on all fourteen tracked stacks.
Also documents the real nature of the post-recreate blank dashboard, which cost
~25 minutes here and an hour on 2026-08-19. `initialSettings":{}` in the served
HTML is the catch branch of the page's data loader, not a warm-up and not a
cache — and the error can vanish entirely, because the logger is assigned inside
the same try and the catch only logs if the logger exists. Ruled out by
measurement this time: all four API routes return 200 with correct content while
the page serves {}, and the previous known-good settings.yaml reproduces it
identically. The README now carries the one-command test and the next lead.
Before/after, all four tabs: http://10.100.10.50:8090/b/homepage-relayout/
293 lines
12 KiB
YAML
293 lines
12 KiB
YAML
---
|
|
# https://gethomepage.dev/latest/configs/settings
|
|
title: ... all my base ...
|
|
theme: dark
|
|
# `color:` only accepts Homepage's built-in Tailwind ramps, and none of them is
|
|
# the Australis Sea ramp. slate is the nearest cool neutral and acts as the
|
|
# base under conf/custom.css, which is where the real palette lives.
|
|
color: slate
|
|
|
|
# NO `background:` BLOCK — DELIBERATE, DO NOT RE-ADD WITHOUT ASKING.
|
|
#
|
|
# This carried a generated full-bleed aurora image (Arbo job 13f0891f4e42,
|
|
# seed 26, flux2-klein-9b) at opacity 30. It went in on an explicit request
|
|
# for an Arbo-generated background and came out on 2026-08-19 when the
|
|
# operator called the result ugly.
|
|
#
|
|
# The image was also against canon on its own terms: Australis says "solid
|
|
# fills only on chrome — no full-bleed photography, no decorative gradients",
|
|
# and permits the aurora motif "never as a background fill behind text". A
|
|
# whole dashboard is text. The predecessor knew and dialled the opacity down
|
|
# instead of dropping it, which is how you end up with a quiet version of the
|
|
# wrong thing. The asset is still in `images/` if this is ever revisited.
|
|
#
|
|
# The aurora now appears exactly where canon sanctions it: a 1px accent edge
|
|
# under the tab bar, in conf/custom.css.
|
|
headerStyle: boxedWidgets
|
|
|
|
providers:
|
|
openweathermap: openweathermapapikey
|
|
weatherapi: weatherapiapikey
|
|
|
|
quicklaunch:
|
|
searchDescriptions: true
|
|
hideInternetSearch: true
|
|
showSearchSuggestions: true
|
|
hideVisitURL: true
|
|
|
|
showStats: false
|
|
statusStyle: ""
|
|
|
|
# Cards size to their own content. This was `true` to stop widget-bearing
|
|
# cards (Uptime Kuma's stat strip, Paperless's counts) standing taller than
|
|
# plain link cards and leaving the grid ragged — but the cure was worse than
|
|
# the disease: every short card in the row inflated into a hollow box to match
|
|
# the tall one. A ragged bottom edge reads as content; a stretched empty card
|
|
# reads as a rendering fault.
|
|
useEqualHeights: false
|
|
|
|
# ===========================================================================
|
|
# THE ORGANISING QUESTION IS "DO I OPEN THIS?" — NOT "WHAT IS IT?"
|
|
# (operator, 2026-08-24: "most of the issues are that tools I use and have a
|
|
# UI are interspersed with API endpoints which are largely informational
|
|
# only. They might even go in their own cards or start collapsed.")
|
|
#
|
|
# Every group on this board is one of two kinds, and they never mix:
|
|
#
|
|
# TOOLS — you click the card and do something in the thing it opens.
|
|
# Expanded, and placed at the TOP of its tab.
|
|
# ENDPOINTS — an API, a broker, a background agent. Its href is a `/docs`
|
|
# page, a `/ping`, or nothing at all. The only thing you want from
|
|
# the card is "is it alive". `initiallyCollapsed: true`, and placed
|
|
# at the BOTTOM of its tab.
|
|
#
|
|
# A collapsed group is not hidden — the eyebrow and its rule still render, so
|
|
# the tab still tells you the thing exists, and one click expands it. That is
|
|
# the whole point: presence without cost.
|
|
#
|
|
# When you add a service, ask "would I open this in a browser to get work
|
|
# done?" If no, it belongs in a collapsed endpoint group, no matter how
|
|
# central it is to the fleet. `AI - Inference` holds the seats the entire
|
|
# fleet runs on and it is collapsed, because you consume them through the
|
|
# gateway rather than by clicking them.
|
|
#
|
|
# Four tabs:
|
|
# Main - what you actually open day to day
|
|
# AI - AI tools up top, model/API seats collapsed below
|
|
# Infrastructure - hardware, hypervisors, BMCs (per site) — all consoles
|
|
# Toolchain - the plumbing, split by kind of plumbing
|
|
#
|
|
# ---------------------------------------------------------------------------
|
|
# GROUP MEMBERSHIP LIVES ON THE CONTAINER, NOT HERE.
|
|
#
|
|
# This block controls tab, order, columns and collapse. WHICH services are in
|
|
# a group is set by `homepage.group=` on each container's compose file, and
|
|
# labels only apply at container CREATION — moving a service between groups
|
|
# means editing the label and running `docker compose up -d <service>`, not
|
|
# `restart`. The 2026-08-24 pass did 28 of those; the playbooks that did it
|
|
# are `playbooks/homepage-regroup-<host>.yaml` and they are rerunnable.
|
|
#
|
|
# ⚠ THE MODEL SEATS ARE DELIBERATELY STILL NAMED `AI - Inference`,
|
|
# `AI - Eval & Retrieval`, `AI - Speech (TTS)` AND `AI - Audio Tools`.
|
|
# Renaming them to something like "AI API - …" would be clearer, and it would
|
|
# cost a recreate on sixteen GPU-backed seats — multi-minute model reloads on
|
|
# endpoints peers reach through the gateway. Order and `initiallyCollapsed`
|
|
# buy the same separation for free. Do not spend that recreate on a label.
|
|
#
|
|
# ---------------------------------------------------------------------------
|
|
# COLUMNS ARE 4 EVERYWHERE. DO NOT TUNE THEM PER GROUP.
|
|
#
|
|
# `columns: N` is not a density dial — it sets `lg:grid-cols-N` on that one
|
|
# group, so it fixes the CARD WIDTH for that group alone. Varying it per group
|
|
# means the card width changes every time you cross a group boundary, and a
|
|
# page whose grid keeps resizing as you scroll reads as broken layout even when
|
|
# every individual group is fine.
|
|
#
|
|
# The predecessor rule here was "columns = the member count", written to avoid
|
|
# the dead cells a 1-member group leaves in a 4-wide row. It trades one flaw
|
|
# for a worse one: at columns:1 a single service becomes a 1500px-wide bar
|
|
# holding six words, and at columns:2 a three-member group orphans its third
|
|
# card onto a half-empty row. Measured on the live board 2026-08-24 — the
|
|
# Notes, News, Media, AI - Image & Media and AI - Audio Tools groups were all
|
|
# rendering cards two to four times wider than the groups above and below them.
|
|
#
|
|
# A short last row is what a grid looks like. A card that is wider than its
|
|
# neighbours is what a mistake looks like. Uniform wins.
|
|
#
|
|
# Homepage's own responsive ramp (`grid-cols-1 md:grid-cols-2 lg:grid-cols-N`)
|
|
# still collapses this to 2-up and 1-up on narrow viewports, so 4 is a desktop
|
|
# maximum, not a hard floor.
|
|
#
|
|
# ---------------------------------------------------------------------------
|
|
# GROUPS ARE ALSO KEPT UNIFORM IN CARD HEIGHT, WHICH IS WHY ADGUARD AND
|
|
# TRAEFIK GOT THEIR OWN GROUPS.
|
|
#
|
|
# A service with a widget (AdGuard's query counts, Traefik's router counts,
|
|
# Uptime Kuma's uptime) renders a stat strip that makes its card ~50px taller
|
|
# than a plain link card. Put one of those in a row of three plain cards and
|
|
# you get a void under the plain ones — which is what made the old 13-member
|
|
# `Service Networking` group look broken. Split so that a group's members all
|
|
# have widgets or all do not, and every row comes out flush. That is the real
|
|
# reason `DNS & Filtering` (3 widget cards) and `Reverse Proxies` (2 widget
|
|
# cards) are separate from `Compose Consoles` (5 plain cards).
|
|
#
|
|
# ---------------------------------------------------------------------------
|
|
# EVERY GROUP NEEDS A `tab:` — including bookmark groups, and including groups
|
|
# that arrive from a `homepage.group=` container label rather than from this
|
|
# file. A group with no tab assignment renders on ALL FOUR TABS. That is how
|
|
# UltraSeedbox ended up repeated at the bottom of every tab (fixed 2026-08-18)
|
|
# and how Scriberr's `AI Systems` label did the same from 2026-08-23 (fixed
|
|
# 2026-08-24). It is Homepage behaviour, not a bug, and it will happen again to
|
|
# the next container labelled with a group name that does not appear below.
|
|
# `GET /api/services` prints the live group list — anything in it that is not a
|
|
# key here is currently leaking onto all four tabs.
|
|
# ===========================================================================
|
|
layout:
|
|
# ---- Main: what you actually open -------------------------------------
|
|
# Replaces the old Notes (1 member) and News (2) bands, which each burned a
|
|
# full 4-wide row on a single card.
|
|
Daily:
|
|
icon: mdi-coffee-outline
|
|
tab: Main
|
|
style: row
|
|
columns: 4
|
|
Monitoring:
|
|
icon: mdi-chart-line
|
|
tab: Main
|
|
style: row
|
|
columns: 4
|
|
# Absorbed the old one-card Games band (Pterodactyl). Lost SearXNG to Daily,
|
|
# the two chat frontends to the AI tab, and Mosquitto + the RustDesk relay to
|
|
# Agents (no UI) — neither of those has a page to open.
|
|
Apps:
|
|
icon: mdi-apps
|
|
tab: Main
|
|
style: row
|
|
columns: 4
|
|
Media:
|
|
icon: mdi-play-box-multiple
|
|
tab: Main
|
|
style: row
|
|
columns: 4
|
|
# Bookmarks. Listed here for the tab pin above all else — without it this
|
|
# group appears on every tab. `style: row` also turns the eight entries
|
|
# from full-width stacked bars into a compact grid.
|
|
UltraSeedbox:
|
|
icon: mdi-download-network
|
|
tab: Main
|
|
style: row
|
|
columns: 4
|
|
|
|
# ---- AI: tools, then collapsed endpoints ------------------------------
|
|
# Chat frontends and the control plane — Lobe Chat and the ESH Open WebUI
|
|
# joined from Main on 2026-08-24; they are chat frontends and belong with the
|
|
# other chat frontends.
|
|
AI - Gateways & Chat:
|
|
icon: mdi-router-network
|
|
tab: AI
|
|
style: row
|
|
columns: 4
|
|
# Replaces `AI - Image & Media`. Everything here is a workspace you open and
|
|
# produce something in: ComfyUI's node editor, Arbo, Waterland, the YT
|
|
# Voice Clipper audition console, Scriberr's transcription UI.
|
|
AI - Studios:
|
|
icon: mdi-palette-outline
|
|
tab: AI
|
|
style: row
|
|
columns: 4
|
|
# ---- collapsed from here down: seats you call, not pages you open ------
|
|
# Named `AI - Inference` rather than something clearer on purpose — see the
|
|
# warning above about what renaming these costs.
|
|
AI - Inference:
|
|
icon: mdi-brain
|
|
tab: AI
|
|
style: row
|
|
columns: 4
|
|
initiallyCollapsed: true
|
|
AI - Eval & Retrieval:
|
|
icon: mdi-scale-balance
|
|
tab: AI
|
|
style: row
|
|
columns: 4
|
|
initiallyCollapsed: true
|
|
AI - Speech (TTS):
|
|
icon: mdi-account-voice
|
|
tab: AI
|
|
style: row
|
|
columns: 4
|
|
initiallyCollapsed: true
|
|
# What is left of the old Audio Tools group after Scriberr and the YT Voice
|
|
# Clipper moved to Studios: the two ASR API seats.
|
|
AI - Audio Tools:
|
|
icon: mdi-waveform
|
|
tab: AI
|
|
style: row
|
|
columns: 4
|
|
initiallyCollapsed: true
|
|
# Stopped stacks kept for rollback / superseded seats / retired auditions.
|
|
# They stay 'created' (not running) via `docker compose up --no-start`, so
|
|
# they show here as offline cards and revive with `docker compose start`.
|
|
AI - Dormant:
|
|
icon: mdi-sleep
|
|
tab: AI
|
|
style: row
|
|
columns: 4
|
|
initiallyCollapsed: true
|
|
|
|
# ---- Infrastructure: every card is a console --------------------------
|
|
Infra - ANA:
|
|
icon: si-proxmox
|
|
tab: Infrastructure
|
|
style: row
|
|
columns: 4
|
|
Infra - NH3:
|
|
icon: si-proxmox
|
|
tab: Infrastructure
|
|
style: row
|
|
columns: 4
|
|
Infra - IRV:
|
|
icon: mdi-brain
|
|
tab: Infrastructure
|
|
style: row
|
|
columns: 4
|
|
Infra - ESH:
|
|
icon: si-proxmox
|
|
tab: Infrastructure
|
|
style: row
|
|
columns: 4
|
|
|
|
# ---- Toolchain: the plumbing, split by kind ---------------------------
|
|
# The old `Service Networking` group was thirteen members mixing three
|
|
# AdGuards, five Dockges, two Traefiks and four headless agents — widget
|
|
# cards next to plain ones next to things with no href at all. Split four
|
|
# ways on 2026-08-24.
|
|
DNS & Filtering:
|
|
icon: mdi-dns
|
|
tab: Toolchain
|
|
style: row
|
|
columns: 4
|
|
Reverse Proxies:
|
|
icon: mdi-transit-connection-variant
|
|
tab: Toolchain
|
|
style: row
|
|
columns: 4
|
|
Compose Consoles:
|
|
icon: mdi-docker
|
|
tab: Toolchain
|
|
style: row
|
|
columns: 4
|
|
Toolchain:
|
|
icon: mdi-toolbox
|
|
tab: Toolchain
|
|
style: row
|
|
columns: 4
|
|
# No href, or an href that is an API. CrowdSec, Mailrise, the restic
|
|
# rest-server, the Gitea Actions runner, the MQTT broker, the RustDesk relay.
|
|
# You never open these; you only ever want to know they are up.
|
|
Agents (no UI):
|
|
icon: mdi-cog-transfer-outline
|
|
tab: Toolchain
|
|
style: row
|
|
columns: 4
|
|
initiallyCollapsed: true
|