63 lines
1.8 KiB
Docker
63 lines
1.8 KiB
Docker
# Docker Umgebungsvariablen für n8n mit LibreBooking Node
|
|
# Kopiere diese Datei nach .env und passe die Werte an
|
|
|
|
# ============================================
|
|
# n8n Basis-Konfiguration
|
|
# ============================================
|
|
|
|
# Host und Port
|
|
N8N_HOST=localhost
|
|
N8N_PORT=5678
|
|
N8N_PROTOCOL=http
|
|
|
|
# Webhook URL (für externe Webhooks)
|
|
# Für Produktion: https://your-domain.com/
|
|
WEBHOOK_URL=http://localhost:5678/
|
|
|
|
# ============================================
|
|
# Authentifizierung (für Produktion aktivieren!)
|
|
# ============================================
|
|
|
|
N8N_BASIC_AUTH_ACTIVE=false
|
|
N8N_BASIC_AUTH_USER=admin
|
|
N8N_BASIC_AUTH_PASSWORD=changeme_secure_password
|
|
|
|
# ============================================
|
|
# Zeitzone
|
|
# ============================================
|
|
|
|
TZ=Europe/Berlin
|
|
|
|
# ============================================
|
|
# Logging
|
|
# ============================================
|
|
|
|
# Mögliche Werte: silent, error, warn, info, debug
|
|
N8N_LOG_LEVEL=info
|
|
|
|
# ============================================
|
|
# PostgreSQL (optional, für Produktion empfohlen)
|
|
# Aktivieren mit: docker-compose --profile with-postgres up -d
|
|
# ============================================
|
|
|
|
POSTGRES_USER=n8n
|
|
POSTGRES_PASSWORD=n8n_secure_password
|
|
POSTGRES_DB=n8n
|
|
|
|
# Wenn PostgreSQL aktiv, diese Variable in docker-compose.yml hinzufügen:
|
|
# DB_TYPE=postgresdb
|
|
# DB_POSTGRESDB_HOST=postgres
|
|
# DB_POSTGRESDB_PORT=5432
|
|
# DB_POSTGRESDB_DATABASE=${POSTGRES_DB}
|
|
# DB_POSTGRESDB_USER=${POSTGRES_USER}
|
|
# DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD}
|
|
|
|
# ============================================
|
|
# LibreBooking Konfiguration (Optional)
|
|
# Diese können auch direkt in n8n als Credentials angelegt werden
|
|
# ============================================
|
|
|
|
# LIBREBOOKING_URL=https://booking.example.com
|
|
# LIBREBOOKING_USER=api_user
|
|
# LIBREBOOKING_PASSWORD=api_password
|