From ccbd88c36bcd48fe967dd991a6600f980719de30 Mon Sep 17 00:00:00 2001
From: deprrous
Date: Sun, 26 Jul 2026 19:21:15 +0800
Subject: [PATCH] Use ProxySet for standalone worker example
---
docs/manual/mod/mod_proxy.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml
index f7a34e62036..1ace4854c43 100644
--- a/docs/manual/mod/mod_proxy.xml
+++ b/docs/manual/mod/mod_proxy.xml
@@ -1614,10 +1614,10 @@ when the url parameter contains backreference(s) (see note below).
reuse connections or cache DNS lookups. To enable connection
pooling, define an explicit worker for the backend separately:
-ProxyPass "/notused" "http://backend.example.com/" connectiontimeout=5 timeout=30
+ProxySet http://backend.example.com connectiontimeout=5 timeout=30
ProxyPassMatch "^/(.*\.gif)$" "http://backend.example.com/$1"
- The explicit ProxyPass worker definition
+
The explicit ProxySet worker definition
ensures that the backend connection pool is available for use by
ProxyPassMatch requests.