You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2007/08/07 14:58:39 UTC

svn commit: r563480 - /httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml

Author: jim
Date: Tue Aug  7 05:58:38 2007
New Revision: 563480

URL: http://svn.apache.org/viewvc?view=rev&rev=563480
Log:
Minimal ProxySet directive documentation :)

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml?view=diff&rev=563480&r1=563479&r2=563480
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml Tue Aug  7 05:58:38 2007
@@ -514,6 +514,38 @@
 </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>
 <syntax>ProxyPass [<var>path</var>] !|<var>url</var> [<var>key=value</var>



Re: svn commit: r563480 - /httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml

Posted by Ruediger Pluem <rp...@apache.org>.

On 08/07/2007 02:58 PM, jim@apache.org wrote:
> Author: jim
> Date: Tue Aug  7 05:58:38 2007
> New Revision: 563480
> 
> URL: http://svn.apache.org/viewvc?view=rev&rev=563480
> Log:
> Minimal ProxySet directive documentation :)

Many thanks for doing so Jim.

Regards

RĂ¼diger