mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-16 15:22:23 +03:00
Merge pull request #1 from narduin/patch-1
OpenLiteSpeed webserver documentation
commit
5a32ac8e21
1 changed files with 41 additions and 0 deletions
|
@ -12,6 +12,7 @@ Uptime Kuma **does not support a subdirectory** such as `http://example.com/upti
|
|||
- [Synology Builtin Reverse Proxy](#synology-builtin-reverse-proxy)
|
||||
- [Traefik](#Traefik)
|
||||
- [Cloudflare](#cloudflare)
|
||||
- [OpenLiteSpeed](#openlitespeed)
|
||||
- Others
|
||||
- [SSL/HTTPS](#sslhttps)
|
||||
|
||||
|
@ -162,6 +163,46 @@ Cloudflare Dashboard -> Network -> Enable WebSockets
|
|||
Read more:
|
||||
https://github.com/louislam/uptime-kuma/issues/138#issuecomment-890485229
|
||||
|
||||
# OpenLiteSpeed
|
||||
|
||||
Create a new virtual host through the graphical admin like you normally would.
|
||||
|
||||
**Basic tab**
|
||||
- Name: `uptime-kuma`
|
||||
- Virtual Host Root: `/path/to/uptime-kuma`
|
||||
- Enable Scripts/ExtApps: `Yes`
|
||||
|
||||
**External app tab**
|
||||
- Add a `web server` app type
|
||||
- Name: `uptime-kuma`
|
||||
- Address: `http://localhost:3001`
|
||||
|
||||
**Context tab**
|
||||
|
||||
- Add a `proxy` context
|
||||
- URI: `/`
|
||||
- Web Server: `[VHost Level]: uptime-kuma`
|
||||
- Header Operations:
|
||||
```
|
||||
Upgrade websocket
|
||||
Connection upgrade
|
||||
```
|
||||
- Access Allowed: `*`
|
||||
|
||||
**Web Socket Proxy tab**
|
||||
|
||||
- Add a `Web Socket Proxy Setup`
|
||||
- URI: `/`
|
||||
- Address: `127.0.0.1:3001`
|
||||
|
||||
**SSL tab (if needeed)**
|
||||
|
||||
- Private Key File: `/path/to/ssl/key/privkey.pem`
|
||||
- Certificate File: `/path/to/ssl/cert/fullchain.pem`
|
||||
- Chained Certificate: `yes`
|
||||
|
||||
Perform a graceful restart and launch uptime-kuma.
|
||||
|
||||
# Others
|
||||
|
||||
## SSL/HTTPS
|
||||
|
|
Loading…
Add table
Reference in a new issue