From d34fe0997ceac3daa4841b62bdb25add57e1f58c Mon Sep 17 00:00:00 2001 From: Iz Date: Wed, 4 Oct 2023 02:02:17 +0000 Subject: [PATCH 1/2] update readme and an app to show websocket support --- README.md | 1 + public/v4/apps/uptime-kuma.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index a866646be..b3531edd9 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ caproverOneClickApp: - `dockerfileLines` which is a multiline variable, and can be used instead of `image` property in the service. You must delete the `image` property if you want to use this parameter. - `containerHttpPort` is useful when the underlying service uses a custom port for HTTP. If not provided, the default will be `"80"` - `notExposeAsWebApp` can be set to `"true"` when the underlying service is not an HTTP app. This is useful for databases and other internally used services. + - `websocketSupport` can be set to `"true"` to automatically enable Websocket Support. ### Icon - Make sure you add an app icon to the logos directory! diff --git a/public/v4/apps/uptime-kuma.yml b/public/v4/apps/uptime-kuma.yml index 2129c68c3..ace63617a 100644 --- a/public/v4/apps/uptime-kuma.yml +++ b/public/v4/apps/uptime-kuma.yml @@ -8,6 +8,7 @@ services: - $$cap_appname-data:/app/data caproverExtra: containerHttpPort: '3001' + websocketSupport: 'true' caproverOneClickApp: variables: - id: $$cap_kuma_version From c2ca6abb246c34bf34a6cdc32dc171b67ddce639 Mon Sep 17 00:00:00 2001 From: Isaac Date: Wed, 4 Oct 2023 19:55:09 -0400 Subject: [PATCH 2/2] Update README.md adding version information to websocketSupport feature --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3531edd9..a16efb21b 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ caproverOneClickApp: - `dockerfileLines` which is a multiline variable, and can be used instead of `image` property in the service. You must delete the `image` property if you want to use this parameter. - `containerHttpPort` is useful when the underlying service uses a custom port for HTTP. If not provided, the default will be `"80"` - `notExposeAsWebApp` can be set to `"true"` when the underlying service is not an HTTP app. This is useful for databases and other internally used services. - - `websocketSupport` can be set to `"true"` to automatically enable Websocket Support. + - `websocketSupport` can be set to `"true"` to automatically enable Websocket Support. Only supported in versions 1.12+ ### Icon - Make sure you add an app icon to the logos directory!