]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Minimal ProxySet directive documentation :)
authorJim Jagielski <jim@apache.org>
Tue, 7 Aug 2007 12:58:38 +0000 (12:58 +0000)
committerJim Jagielski <jim@apache.org>
Tue, 7 Aug 2007 12:58:38 +0000 (12:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@563480 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy.xml

index b1805b4222f20b292f84dc2449973aa41af2523d..5183708928d3f826663c47bd3b0c469665082be4 100644 (file)
@@ -513,6 +513,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>