ntfy
Send push notifications to your phone or desktop using PUT/POST
Alternative to: Pushover, Pushbullet
v2.19.0
2026-03-15This is a fast-follow release that enables Postgres read replica support.
To offload read-heavy queries from the primary database, you can optionally configure one or more read replicas using the database-replica-urls option. When configured, non-critical read-only queries (e.g. fetching messages, checking access permissions, etc) are distributed across the replicas using round-robin, while all writes and correctness-critical reads continue to go to the primary. If a replica becomes unhealthy, ntfy automatically falls back to the primary until the replica recovers.
Features:
- Support PostgreSQL read replicas for offloading non-critical read queries via
database-replica-urlsconfig option (#1648) - Add interactive config generator to the documentation to help create server configuration files (#1654)
Bug fixes + maintenance: