fix: generic Chat-Archive URL placeholder, add CHATAPI env vars to docker-compose

This commit is contained in:
2026-09-17 19:05:20 +02:00
parent 5f39d276d6
commit 113527a4a0
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -32,5 +32,5 @@ WEB_URL=https://kontakte.example.de
# --- Chat-Archive API (optional, zeigt Chat-Nachrichten in der Kontakt-Detailseite) --- # --- Chat-Archive API (optional, zeigt Chat-Nachrichten in der Kontakt-Detailseite) ---
CHATAPI_ENABLED=false CHATAPI_ENABLED=false
CHATAPI_URL=http://docker-host-pve.fritz.box:8420 CHATAPI_URL=http://chat-archive-host:8420
CHATAPI_KEY=change-me CHATAPI_KEY=change-me
+1 -1
View File
@@ -328,7 +328,7 @@ In `.env`:
``` ```
CHATAPI_ENABLED=true CHATAPI_ENABLED=true
CHATAPI_URL=http://docker-host-pve.fritz.box:8420 CHATAPI_URL=http://chat-archive-host:8420
CHATAPI_KEY=change-me CHATAPI_KEY=change-me
``` ```
+3
View File
@@ -58,6 +58,9 @@ services:
MAIL_FROM: "${MAIL_FROM}" MAIL_FROM: "${MAIL_FROM}"
TIMEZONE: "${TIMEZONE:-Europe/Berlin}" TIMEZONE: "${TIMEZONE:-Europe/Berlin}"
WEB_URL: "${WEB_URL:-}" WEB_URL: "${WEB_URL:-}"
CHATAPI_ENABLED: "${CHATAPI_ENABLED:-false}"
CHATAPI_URL: "${CHATAPI_URL:-}"
CHATAPI_KEY: "${CHATAPI_KEY:-}"
volumes: volumes:
- ./config/accounts.json:/app/config/accounts.json:ro - ./config/accounts.json:/app/config/accounts.json:ro
ports: ports: