Louis Lam 2022-12-10 23:11:23 +08:00
commit 2ba124d50c
3 changed files with 12 additions and 3 deletions

@ -1 +1,9 @@
Please read: https://github.com/louislam/uptime-kuma/issues/284
Uptime Kuma supports a lot of notifications.
For native support platforms, please read here:
[https://github.com/louislam/uptime-kuma/tree/master/server/notification-providers](https://github.com/louislam/uptime-kuma/tree/master/server/notification-providers)
Uptime Kuma is integrated Apprise which supports up to 78+ notification services. You can read the full list here:
https://github.com/caronc/apprise/wiki

@ -1,7 +1,8 @@
## With Docker
```
docker exec -it <container name> npm run reset-password
docker exec -it <container name> bash
npm run reset-password
```
## Without Docker

@ -1,6 +1,6 @@
In order to expose Uptime Kuma to the web securely, it is recommended to proxy it behind a traditional webserver such as nginx or Apache. Below are some example configurations that you could use.
Unlike other web apps, Uptime Kuma is based on WebSocket. You need two more headers **"Upgrade"** and **"Connection"** in order to **reverse proxy WebSocket**.
Unlike other web apps, Uptime Kuma is based on WebSocket. You need two more headers **"Upgrade"** and **"Connection"** in order to accept WebSocket on a reverse proxy.
Uptime Kuma **does not support a subdirectory** such as `http://example.com/uptimekuma`. Please prepare a domain or sub-domain to do that.