From 1182758f9640515deff4f67aa56f0ecba8788ff4 Mon Sep 17 00:00:00 2001 From: Anastasia Lutsiuk Date: Thu, 17 Sep 2026 06:51:11 -0400 Subject: [PATCH 1/3] docs(isolates): document LiteSpeed support and its version floors CloudLinux Isolates now runs under standalone LiteSpeed Web Server, but the Isolates page still listed LiteSpeed as "coming in future releases" and called Apache the only supported web server. Mark LiteSpeed as supported, add a "LiteSpeed requirements" block with the minimum package versions (cagefs 7.6.47-1, lve-wrappers 0.7.16-1, liblve 2.2-8, ea-apache24-mod_hostinglimits 1.0-49), and scope the PHP handler table to Apache instead of claiming it is the only web server. Co-Authored-By: Claude Opus 5 (1M context) Worked-On: cl-aiworkspaces --- docs/cloudlinuxos/isolates/README.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/docs/cloudlinuxos/isolates/README.md b/docs/cloudlinuxos/isolates/README.md index c97b8157b..7c2449727 100644 --- a/docs/cloudlinuxos/isolates/README.md +++ b/docs/cloudlinuxos/isolates/README.md @@ -32,11 +32,28 @@ When CloudLinux Isolates is enabled for a domain: | --- | --- | --- | | Apache | ✅ Supported | See [Compatible PHP Handlers](#compatible-php-handlers) below for handler-specific requirements. | | NGINX | 🔜 Coming in future releases | | -| LiteSpeed | 🔜 Coming in future releases | | +| LiteSpeed | ✅ Supported | Standalone LiteSpeed Web Server. Requires the package versions listed in [LiteSpeed requirements](#litespeed-requirements) below. | + +##### LiteSpeed requirements + +CloudLinux Isolates is supported under **standalone LiteSpeed Web Server**. In addition to the [minimum package versions](#minimum-package-versions) listed above, LiteSpeed servers require: + +| Package | Minimum Version | Notes | +| ----------------------------- | --------------- | --------------------------------- | +| cagefs | 7.6.47-1 | | +| lve-wrappers | 0.7.16-1 | | +| lve (liblve) | 2.2-8 | | +| ea-apache24-mod_hostinglimits | 1.0-49 | cPanel (EasyApache 4) servers only | + +To check the installed versions: + +``` +rpm -q cagefs lve-wrappers lve ea-apache24-mod_hostinglimits +``` #### Compatible PHP Handlers -The following table applies to **Apache** — the only supported web server for CloudLinux Isolates. +The following table applies to **Apache**. For standalone LiteSpeed, see [LiteSpeed requirements](#litespeed-requirements) above. | Handler | Status | Notes | | --- | --- | --- | From 3034af949c35c335bede0327eac723f50f14a7ec Mon Sep 17 00:00:00 2001 From: Anastasia Lutsiuk Date: Thu, 17 Sep 2026 06:52:00 -0400 Subject: [PATCH 2/3] docs(isolates): state that LiteSpeed support is cPanel-only Follow-up to 1182758f. Standalone LiteSpeed support is limited to cPanel for now, so say so directly in the web server table, in the LiteSpeed requirements block, and next to the control panel table (which describes Apache) instead of only implying it via the ea-* package row. Co-Authored-By: Claude Opus 5 (1M context) Worked-On: cl-aiworkspaces --- docs/cloudlinuxos/isolates/README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/docs/cloudlinuxos/isolates/README.md b/docs/cloudlinuxos/isolates/README.md index 7c2449727..dadc86dc3 100644 --- a/docs/cloudlinuxos/isolates/README.md +++ b/docs/cloudlinuxos/isolates/README.md @@ -32,18 +32,20 @@ When CloudLinux Isolates is enabled for a domain: | --- | --- | --- | | Apache | ✅ Supported | See [Compatible PHP Handlers](#compatible-php-handlers) below for handler-specific requirements. | | NGINX | 🔜 Coming in future releases | | -| LiteSpeed | ✅ Supported | Standalone LiteSpeed Web Server. Requires the package versions listed in [LiteSpeed requirements](#litespeed-requirements) below. | +| LiteSpeed | ✅ Supported (cPanel only) | Standalone LiteSpeed Web Server, on cPanel servers only. See [LiteSpeed requirements](#litespeed-requirements) below. | ##### LiteSpeed requirements -CloudLinux Isolates is supported under **standalone LiteSpeed Web Server**. In addition to the [minimum package versions](#minimum-package-versions) listed above, LiteSpeed servers require: +CloudLinux Isolates is supported under **standalone LiteSpeed Web Server**, and for now **on cPanel servers only** — LiteSpeed on Plesk, DirectAdmin and integration-script panels is not yet supported. -| Package | Minimum Version | Notes | -| ----------------------------- | --------------- | --------------------------------- | -| cagefs | 7.6.47-1 | | -| lve-wrappers | 0.7.16-1 | | -| lve (liblve) | 2.2-8 | | -| ea-apache24-mod_hostinglimits | 1.0-49 | cPanel (EasyApache 4) servers only | +In addition to the [minimum package versions](#minimum-package-versions) listed above, LiteSpeed servers require: + +| Package | Minimum Version | +| ----------------------------- | --------------- | +| cagefs | 7.6.47-1 | +| lve-wrappers | 0.7.16-1 | +| lve (liblve) | 2.2-8 | +| ea-apache24-mod_hostinglimits | 1.0-49 | To check the installed versions: @@ -93,6 +95,8 @@ For full details on this directive, see [lsapi_per_user in mod_lsapi documentati *[Control Panel Integration](/cloudlinuxos/control_panel_integration/#control-panel-api-integration) +The table above applies to Apache. Under [standalone LiteSpeed](#litespeed-requirements), only cPanel is supported so far. + #### Compatible PHP Versions CloudLinux Isolates provides partial FPM handler support for both ea-php (cPanel) and alt-php. From 78a60c83b8b79ab74fcc0b43d09f2249f32d3f78 Mon Sep 17 00:00:00 2001 From: Anastasia Lutsiuk Date: Thu, 17 Sep 2026 06:53:56 -0400 Subject: [PATCH 3/3] docs(isolates): trim the LiteSpeed cPanel-only note Drop the clause enumerating the unsupported panels; "on cPanel servers only" already says it. Co-Authored-By: Claude Opus 5 (1M context) Worked-On: cl-aiworkspaces --- docs/cloudlinuxos/isolates/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cloudlinuxos/isolates/README.md b/docs/cloudlinuxos/isolates/README.md index dadc86dc3..fef1c1020 100644 --- a/docs/cloudlinuxos/isolates/README.md +++ b/docs/cloudlinuxos/isolates/README.md @@ -36,7 +36,7 @@ When CloudLinux Isolates is enabled for a domain: ##### LiteSpeed requirements -CloudLinux Isolates is supported under **standalone LiteSpeed Web Server**, and for now **on cPanel servers only** — LiteSpeed on Plesk, DirectAdmin and integration-script panels is not yet supported. +CloudLinux Isolates is supported under **standalone LiteSpeed Web Server**, and for now **on cPanel servers only**. In addition to the [minimum package versions](#minimum-package-versions) listed above, LiteSpeed servers require: