mirror of
https://github.com/skoelle/dyndns-updater.git
synced 2026-09-17 16:10:25 +00:00
35 lines
903 B
Bash
35 lines
903 B
Bash
# FritzBox TR-064
|
|
FRITZBOX_HOST=192.168.178.1
|
|
FRITZBOX_PORT=49000
|
|
FRITZBOX_USER=dyndns-updater
|
|
FRITZBOX_PASSWORD=change-me
|
|
|
|
# Cloudflare
|
|
CLOUDFLARE_API_TOKEN=change-me
|
|
CLOUDFLARE_ZONE_ID=change-me
|
|
# Kommagetrennte Liste der Subdomains (ohne Proxy!), Anzahl beliebig erweiterbar
|
|
CLOUDFLARE_RECORDS=sub1.example.org,sub2.example.org,sub3.example.org
|
|
|
|
# FreeDNS (Fallback/Parallelbetrieb)
|
|
FREEDNS_UPDATE_URL=https://freedns.afraid.org/dynamic/update.php?TOKEN
|
|
|
|
# Webhook (kein Auth, rein intern, Port fest 8090)
|
|
|
|
# Fallback Polling
|
|
POLL_INTERVAL_MINUTES=15
|
|
|
|
# Healthchecks (self-hosted)
|
|
HEALTHCHECK_PING_URL=https://healthchecks.example.org/ping/change-me
|
|
|
|
# E-Mail-Notification bei IP-Änderung (optional)
|
|
SMTP_HOST=smtp.example.org
|
|
SMTP_PORT=587
|
|
SMTP_USER=change-me
|
|
SMTP_PASSWORD=change-me
|
|
NOTIFY_EMAIL_TO=you@example.org
|
|
NOTIFY_EMAIL_FROM=dyndns@example.org
|
|
|
|
# Sonstiges
|
|
TZ=Europe/Berlin
|
|
LOG_LEVEL=INFO
|