]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r563480 from trunk:
authorJim Jagielski <jim@apache.org>
Tue, 7 Aug 2007 13:01:16 +0000 (13:01 +0000)
committerJim Jagielski <jim@apache.org>
Tue, 7 Aug 2007 13:01:16 +0000 (13:01 +0000)
Minimal ProxySet directive documentation :)

Reviewed by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@563486 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy.xml

index 063b21fd72507aea6a0c78c5aee1f74717717b54..ddb9cde6f7accee5602b0ae0d011322385d5f12f 100644 (file)
@@ -491,6 +491,38 @@ expressions</description>
 </usage>
 </directivesynopsis>
 
+<directivesynopsis>
+<name>ProxySet</name>
+<description>Set various Proxy balancer or member parameters</description>
+<syntax>ProxySet <var>url</var> <var>key=value [key=value ...]</var></syntax>
+<contextlist><context>directory</context>
+</contextlist>
+<compatibility>ProxySet is only available in Apache 2.2.0
+       and later.</compatibility>
+<usage>
+    <p>This directive is used as an alternate method of setting any of the
+    parameters available to Proxy balancers and members normally done via the
+    <directive module="mod_proxy">ProxyPass</directive> directive. If used
+    within a <code>&lt;Proxy <var>balancer://</var>...&gt;</code> container
+    directive, the <var>url</var> argument is not required.</p>
+
+    <example>
+      &lt;Proxy balancer://hotcluster&gt;<br />
+      <indent>
+        BalancerMember http://www2.example.com:8009 loadfactor=1<br />
+        BalancerMember http://www3.example.com:8009 loadfactor=2<br />
+        ProxySet lbmethod=bytraffic<br />
+      </indent>
+      &lt;/Proxy&gt;
+    </example>
+
+    <example>
+        ProxySet balancer://foo lbmethod=bytraffic timeout=15
+    </example>
+
+</usage>
+</directivesynopsis>
+
 <directivesynopsis>
 <name>ProxyPass</name>
 <description>Maps remote servers into the local server URL-space</description>