Remove Gotify

This commit is contained in:
Francesco Picone
2025-12-29 12:37:41 +01:00
parent 492edeff70
commit 67c5700ce0
3 changed files with 4 additions and 16 deletions

5
.env
View File

@@ -8,11 +8,6 @@ CF_TTL=120
# Frequenza controllo IP
CF_CRON=*/5 * * * *
# Gotify
GOTIFY_URL=https://alert.qwince.com
GOTIFY_TOKEN=AYqMv_9E4td4I6s
GOTIFY_PRIORITY=5
# Configurazione Container
DATA_VOLUME=./data
RESTART_POLICY=unless-stopped

View File

@@ -12,13 +12,6 @@ services:
- PROXIED=${CF_PROXIED}
- TTL=${CF_TTL}
- CRON=${CF_CRON}
# Gotify (notifica SOLO se IP cambia)
- GOTIFY_URL=${GOTIFY_URL}
- GOTIFY_TOKEN=${GOTIFY_TOKEN}
- GOTIFY_PRIORITY=${GOTIFY_PRIORITY}
- GOTIFY_ONLY_ON_CHANGE=true
volumes:
- ${DATA_VOLUME}:/config

View File

@@ -27,10 +27,10 @@
{% for r in records %}
<tr>
<td>{{ r.name }}</td>
<td>{{ r.dns_ip }}</td>
<td>{{ r.public_ip }}</td>
<td>{{ "ON" if r.proxied else "OFF" }}</td>
<td align="center">{{ r.name }}</td>
<td align="center">{{ r.dns_ip }}</td>
<td align="center">{{ r.public_ip }}</td>
<td align="center">{{ "ON" if r.proxied else "OFF" }}</td>
<td class="{{ 'ok' if r.status == 'OK' else 'bad' }}">
{{ r.status }}
</td>