From f61d7574ec60a8b878ab1f4a43be3c7a72bec63e Mon Sep 17 00:00:00 2001 From: Nico <20305403+narduin@users.noreply.github.com> Date: Mon, 29 Nov 2021 16:55:31 +0100 Subject: [PATCH 1/3] Added Open --- Reverse-Proxy.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/Reverse-Proxy.md b/Reverse-Proxy.md index 34a7627..0fe1a1b 100644 --- a/Reverse-Proxy.md +++ b/Reverse-Proxy.md @@ -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,42 @@ 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. + +## 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 From 221ec1cae28f9f6c879598112eacf81a7aefd82c Mon Sep 17 00:00:00 2001 From: Nico <20305403+narduin@users.noreply.github.com> Date: Mon, 29 Nov 2021 17:03:39 +0100 Subject: [PATCH 2/3] Added OpenLiteSpeed doc added basic tab settings --- Reverse-Proxy.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Reverse-Proxy.md b/Reverse-Proxy.md index 0fe1a1b..58826f9 100644 --- a/Reverse-Proxy.md +++ b/Reverse-Proxy.md @@ -167,6 +167,12 @@ https://github.com/louislam/uptime-kuma/issues/138#issuecomment-890485229 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 From 92d22fb054a2f2f7fa4b47c23f7a1685d70c3cf0 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Wed, 1 Dec 2021 11:29:12 +0800 Subject: [PATCH 3/3] Change h2 to strong --- Reverse-Proxy.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Reverse-Proxy.md b/Reverse-Proxy.md index 58826f9..1743206 100644 --- a/Reverse-Proxy.md +++ b/Reverse-Proxy.md @@ -167,19 +167,17 @@ https://github.com/louislam/uptime-kuma/issues/138#issuecomment-890485229 Create a new virtual host through the graphical admin like you normally would. -## Basic tab - +**Basic tab** - Name: `uptime-kuma` - Virtual Host Root: `/path/to/uptime-kuma` - Enable Scripts/ExtApps: `Yes` -## External app tab - +**External app tab** - Add a `web server` app type - Name: `uptime-kuma` - Address: `http://localhost:3001` -## Context tab +**Context tab** - Add a `proxy` context - URI: `/` @@ -191,13 +189,13 @@ Create a new virtual host through the graphical admin like you normally would. ``` - Access Allowed: `*` -## Web Socket Proxy tab +**Web Socket Proxy tab** - Add a `Web Socket Proxy Setup` - URI: `/` - Address: `127.0.0.1:3001` -## SSL tab (if needeed) +**SSL tab (if needeed)** - Private Key File: `/path/to/ssl/key/privkey.pem` - Certificate File: `/path/to/ssl/cert/fullchain.pem`