From cd0164217ed091d944105254ea4b41293c9f94ce Mon Sep 17 00:00:00 2001 From: counterweight Date: Sun, 19 Oct 2025 17:32:33 +0200 Subject: [PATCH] update readme --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bc6427c..e859f2b 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ -# ntfy emergency app - Message Webapp +# ntfy emergency -This is a simple web application that allows users to send emergency messages to a ntfy server. +This is a simple web application that allows users to send emergency messages to a ntfy server and topic. No coding, no curl, no HTTP. Just a plain web form. tldr: I look at messaging apps very infrequently and have no notifications for them. But what happens if there's a real emergency and someone needs to grab my attention? The only app in my phone that has notifications is the ntfy client, which I use to monitor servers and services. Why not receive a ntfy alert? This small webapp lets my trusted ones send me a high priority message if needed. +A gif is worth a thousand words: + [![webapp.gif](https://i.postimg.cc/85P4ZfK4/webapp.gif)](https://postimg.cc/KKwtzjy3) More details: @@ -100,6 +102,17 @@ npm install npm start ``` +### Reverse proxy + +You probably want to put a reverse proxy in front of this. With [caddy](https://caddyserver.com/), assuming it runs on the same box, this would suffice: + +``` +emergency.yourdomain.com { + reverse_proxy localhost:3000 +} +``` + + ## Docker Image Publishing ```bash