1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-02-14 12:01:52 +00:00

fix ntfy selfhosted docs

This commit is contained in:
Simon Smith 2023-11-21 12:40:45 +00:00 committed by GitHub
parent 2cb9d1484e
commit 712277eb9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -198,13 +198,16 @@ Once setup, the server will offer users the "Pushover" option when setting up me
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. 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.
For [self-hosting your own ntfy server](https://ntfy.sh/docs/install/) with [ACL support](https://ntfy.sh/docs/config/#access-control) For [self-hosting your own ntfy server](https://ntfy.sh/docs/install/) with [ACL support](https://ntfy.sh/docs/config/#access-control)
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
```json ```json
{ {
"messaging": { "messaging": {
"ntfy": { "ntfy": {
"host": "https://[my]ntfy.sh", "host": "myntfyserver.com",
"userurl": "https://[my]ntfy.sh/userhelp", "userurl": "https://myntfyserver.com/userhelp",
"authorization": "Basic cGhpbDpteXBhc3M=" "authorization": "Basic cGhpbDpteXBhc3M="
} }
} }
} }