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")