1 min read 67 words Updated Sep 24, 2026 Created Sep 24, 2026
#backend#selfhosting

A self-hostable service for notfications.

https://docs.ntfy.sh/

Ntfy got this configurator to set up auth etc:https://docs.ntfy.sh/config/

In docker compose setups in Coolify, you might need to turn on "literals" for the AUTH USERS env, as the passwords need to be literals.

Access tokens

`
mytopic is the topic here.

fetch('https://ntfy.example.com/mytopic', { 
	method: 'POST',  
	body: 'Look ma, with auth', 
	headers: { 'Authorization': 'Bearer tk_AgQdq7mVBoFD37zQVN29RhuMzNIz2' 
} 
})