From 9c1d3bc04c4427690de0d7d350d1f1a2ae2111be Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Wed, 20 May 2026 21:03:12 +0200 Subject: [PATCH] =?UTF-8?q?KI-AGENT:=20Selfhost=20Setup=20f=C3=BCr=20Node?= =?UTF-8?q?=20Exporter=20erg=C3=A4nzen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 3 +++ scripts/selfhost-setup.sh | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 23f4526..71f0c7a 100644 --- a/.env.example +++ b/.env.example @@ -53,6 +53,9 @@ OPENAI_API_KEY=replace-this STIRLING_API_KEY=replace-this NUXT_PUBLIC_PDF_LICENSE=replace-with-your-pdf-license +# Interner Prometheus Node Exporter für die Admin-Systemstatusseite. +NODE_EXPORTER_URL=http://node-exporter:9100 + # Optionaler Erststart-Bootstrap. Wenn gesetzt, werden Admin, Mandant, # Admin-Rolle und Grunddaten beim Backend-Start idempotent angelegt. FEDEO_BOOTSTRAP_ADMIN_EMAIL=admin@example.com diff --git a/scripts/selfhost-setup.sh b/scripts/selfhost-setup.sh index f4a0e34..957214b 100755 --- a/scripts/selfhost-setup.sh +++ b/scripts/selfhost-setup.sh @@ -207,7 +207,7 @@ FEDEO Selfhost Setup Dieses Script führt dich durch die lokale Betriebsstruktur: $ROOT_DIR/ - docker-compose.selfhost.yml Docker Stack für FEDEO, Traefik, PostgreSQL, MinIO und Matrix + docker-compose.selfhost.yml Docker Stack für FEDEO, Traefik, PostgreSQL, MinIO, Matrix und Monitoring .env Zielkonfiguration, wird von diesem Script geschrieben postgres/ persistente FEDEO-Datenbank minio/ lokaler S3-kompatibler Dateispeicher @@ -320,6 +320,7 @@ DOKUBOX_IMAP_PASSWORD=$(env_quote "$dokubox_password") OPENAI_API_KEY=$(env_quote "$openai_key") STIRLING_API_KEY=$(env_quote "$stirling_key") NUXT_PUBLIC_PDF_LICENSE=$(env_quote "$pdf_license") +NODE_EXPORTER_URL=$(env_quote "http://node-exporter:9100") FEDEO_BOOTSTRAP_ADMIN_EMAIL=$(env_quote "$admin_email") FEDEO_BOOTSTRAP_ADMIN_PASSWORD=$(env_quote "$admin_password")