implemented apprise notifications + readme updates

This commit is contained in:
jokob-sk
2022-08-13 19:07:04 +10:00
parent 7bc4686553
commit 04c88aee06
6 changed files with 50 additions and 15 deletions

View File

@@ -36,6 +36,12 @@ REPORT_DASHBOARD_URL = 'http://pi.alert/'
REPORT_WEBHOOK = False
WEBHOOK_URL = 'http://n8n.local:5555/webhook-test/aaaaaaaa-aaaa-aaaa-aaaaa-aaaaaaaaaaaa'
# Apprise settings
#-----------------------
REPORT_APPRISE = False
APPRISE_HOST = 'http://localhost:8000/notify'
APPRISE_URL = 'mailto://smtp-relay.sendinblue.com:587?from=user@gmail.com&name=apprise&user=user@gmail.com&pass=password&to=user@gmail.com'
# NTFY (https://ntfy.sh/) settings
# ----------------------
REPORT_NTFY = False
@@ -64,6 +70,7 @@ DHCP_ACTIVE = False
DHCP_LEASES = '/etc/pihole/dhcp.leases'
# arp-scan options & samples
# ----------------------
#
# Scan local network (default)
# SCAN_SUBNETS = '--localnet'
@@ -78,4 +85,5 @@ SCAN_SUBNETS = '--localnet'
# Maintenance Tasks Cron
# ----------------------
DAYS_TO_KEEP_EVENTS = 90
DAYS_TO_KEEP_EVENTS = 90