https://github.com/netfloex/uptimesocket
Notify when a websocket dies
https://github.com/netfloex/uptimesocket
Last synced: 6 days ago
JSON representation
Notify when a websocket dies
- Host: GitHub
- URL: https://github.com/netfloex/uptimesocket
- Owner: Netfloex
- License: mit
- Created: 2022-05-22T21:41:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-08T12:14:36.000Z (almost 3 years ago)
- Last Synced: 2025-02-16T23:25:26.016Z (3 months ago)
- Language: TypeScript
- Size: 266 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UptimeSocket
Notifies you instantly when your server dies
## Configuration
Example `docker-compose.yml`
```yaml
version: "3"services:
uptimesocket:
image: netfloex/uptimesocket
container_name: uptimesocket
restart: unless-stopped
volumes:
- ./config:/app/config
```Example `config/config.yaml`
```yaml
wss://uptime.remoteserver.tld:
name: Remote Server
ntfy: http://localntfy/topicwss://uptime.otherserver.tld:
name: Other Server
# Can be an array too:
ntfy:
- http://secondnotify/topic
- http://secondnotify/other```