From 0589c14bebfbaacefe7dc2488c6e7072dbd3fae9 Mon Sep 17 00:00:00 2001 From: Radoslav Husar Date: Thu, 29 Jun 2023 16:53:46 +0200 Subject: [PATCH 1/2] Finish removal of cluster_slotmem_module in READMEs. --- native/balancers/README.md | 6 +++--- test/native/README.md | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/native/balancers/README.md b/native/balancers/README.md index 133c1256f..f593e98f4 100644 --- a/native/balancers/README.md +++ b/native/balancers/README.md @@ -3,11 +3,11 @@ The module requires mod_balancer # to use it (example) ``` -LoadModule proxy_hcheck_module modules/mod_proxy_hcheck.so -LoadModule watchdog_module modules/mod_watchdog.so -LoadModule cluster_slotmem_module modules/mod_cluster_slotmem.so +LoadModule proxy_hcheck_module modules/mod_proxy_hcheck.so +LoadModule watchdog_module modules/mod_watchdog.so LoadModule manager_module modules/mod_manager.so LoadModule lbmethod_cluster_module modules/mod_lbmethod_cluster.so + SetHandler balancer-manager diff --git a/test/native/README.md b/test/native/README.md index 20efda3eb..76628ab23 100644 --- a/test/native/README.md +++ b/test/native/README.md @@ -73,7 +73,6 @@ You need an Apache httpd with the mod_cluster.so installed and running. You can subdirectory or simply run `make setup-httpd`. You should have following piece in httpd.conf/mod_proxy_cluster.conf: ``` -LoadModule cluster_slotmem_module modules/mod_cluster_slotmem.so LoadModule manager_module modules/mod_manager.so LoadModule proxy_cluster_module modules/mod_proxy_cluster.so From c4c693db908bf96fc69f34e19471fb0390eefdad Mon Sep 17 00:00:00 2001 From: Radoslav Husar Date: Thu, 29 Jun 2023 16:59:15 +0200 Subject: [PATCH 2/2] Fix mod_manager CMAKE file. --- native/mod_manager/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/mod_manager/CMakeLists.txt b/native/mod_manager/CMakeLists.txt index e81d0beeb..3ccc875c2 100644 --- a/native/mod_manager/CMakeLists.txt +++ b/native/mod_manager/CMakeLists.txt @@ -1,5 +1,5 @@ #================================== -# mod_cluster_slotmem CMake file +# mod_manager CMake file # @author: Michal Karm Babacek #==================================