fix ntfy selfhosted docs

Simon Smith committed Nov 21, 2023 at 12:40 UTC 712277eb9ee3330071f3417d5335030c64dc3ab5
1 file changed +6 -3
docs/docs/messaging/index.md
+6 -3
@@ -198,13 +198,16 @@ Once setup, the server will offer users the "Pushover" option when setting up me
198 No setup is reqired to enable this. When using ntfy, make sure you use a suffisently random topic name so that others can't guess the name and subscribe to it to receive your messages.
199
200 For [self-hosting your own ntfy server](https://ntfy.sh/docs/install/) with [ACL support](https://ntfy.sh/docs/config/#access-control)
201 +
202 +You can set `host` to the DNS name of your server, `userurl` to the url to provide to users to setup access to your server and `authorization` to the Basic base64 User+Pass authenttication for your server
203 +
204 ```json
205 {
206 "messaging": {
207 "ntfy": {
205 - "host": "https://[my]ntfy.sh",
206 - "userurl": "https://[my]ntfy.sh/userhelp",
207 - "authorization": "Basic cGhpbDpteXBhc3M="
208 + "host": "myntfyserver.com",
209 + "userurl": "https://myntfyserver.com/userhelp",
210 + "authorization": "Basic cGhpbDpteXBhc3M="
211 }
212 }
213 }