52 lines
1.5 KiB
Plaintext
52 lines
1.5 KiB
Plaintext
# Apprise Konfiguration
|
|
# Beispiel für Mattermost Webhook:
|
|
# APPRISE_URL=mattermost://username:password@<your-mattermost-server>/channel?webhook=your_webhook_id
|
|
|
|
# Beispiel für andere Dienste:
|
|
# APPRISE_URL=slack://token_a/token_b/token_c/#channel
|
|
# APPRISE_URL=telegram://bottoken/ChatID
|
|
# APPRISE_URL=discord://webhook_id
|
|
|
|
# Apprise Konfiguration für mehrere Endpunkte
|
|
# Mehrere URLs können durch Kommas getrennt werden
|
|
|
|
# Mattermost Webhook
|
|
APPRISE_URL_MATTERMOST=mattermost://username:password@<your-mattermost-server>/channel?webhook=your_webhook_id
|
|
|
|
# Slack (optional)
|
|
# APPRISE_URL_SLACK=slack://token_a/token_b/token_c/#channel
|
|
|
|
# Telegram (optional)
|
|
# APPRISE_URL_TELEGRAM=telegram://bottoken/ChatID
|
|
|
|
# Discord (optional)
|
|
# APPRISE_URL_DISCORD=discord://webhook_id
|
|
|
|
# Email (optional)
|
|
# APPRISE_URL_EMAIL=smtp://user:pass@gmail.com:587
|
|
|
|
# Pushover (optional)
|
|
# APPRISE_URL_PUSHOVER=pover://token/user_key
|
|
|
|
# Microsoft Teams (optional)
|
|
# APPRISE_URL_TEAMS=msteams://TokenA/TokenB/TokenC/
|
|
|
|
# Benachrichtigungsregeln
|
|
# Mögliche Werte: all, critical, maintenance, outage
|
|
NOTIFICATION_LEVEL=all
|
|
|
|
# Benachrichtigungsfilter (kommagetrennt)
|
|
# Leer lassen für alle Meldungen
|
|
# Beispiele: "störung", "wartung", "warnung"
|
|
NOTIFICATION_FILTERS=
|
|
|
|
# Benachrichtigungszeiten (24h Format, kommagetrennt)
|
|
# Leer lassen für 24/7 Benachrichtigungen
|
|
# Beispiel: "08:00-18:00" für nur werktags
|
|
NOTIFICATION_HOURS=
|
|
|
|
# Verzögerung zwischen Benachrichtigungen (in Sekunden)
|
|
NOTIFICATION_DELAY=0
|
|
|
|
# Debug-Modus (true/false)
|
|
DEBUG_MODE=false |