Ntfy

Self-hosted push notification service. Ntfy receives HTTP POST messages and delivers them to subscribed clients (mobile apps, web UI, CLI).

Quick Reference

PropertyValue
URLhttps://ntfy.ops.eblu.me
Tailscale URLhttps://ntfy.tail8d86e.ts.net
Namespacentfy
Imagebinwiederhier/ntfy:v2.17.0
Upstreamhttps://github.com/binwiederhier/ntfy
Manifestsargocd/manifests/ntfy/

Architecture

Ntfy runs as a single pod with no persistent storage — message cache and attachments use an emptyDir volume. This is intentional: ntfy is treated as an ephemeral delivery channel, not a message store. Messages lost on pod restart are acceptable.

The upstream relay (ntfy.sh) is configured so mobile app clients can receive push notifications via Google FCM / Apple APNs without self-hosting those integrations.

Producers

Currently the only producer is frigate-notify, which publishes camera detection alerts (person, vehicle, animal) from Frigate via MQTT to ntfy:

Frigate → MQTT (Mosquitto) → frigate-notify → ntfy → mobile clients

The frigate-notify config points to ntfy’s cluster-internal address:

http://ntfy.ntfy.svc.cluster.local:80

Other services could publish to ntfy in the future — any HTTP client can POST to a topic.

Configuration

Server config is in a ConfigMap (ntfy-config):

SettingValue
base-urlhttps://ntfy.ops.eblu.me
upstream-base-urlhttps://ntfy.sh
attachment-total-size-limit1 GB
attachment-file-size-limit10 MB
attachment-expiry-duration24h

No authentication is configured — access is restricted by Tailscale ACLs (only tailnet clients can reach the service).