]> granicus.if.org Git - apache/commitdiff
xforms
authorJim Jagielski <jim@apache.org>
Mon, 25 Jan 2016 20:07:44 +0000 (20:07 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 25 Jan 2016 20:07:44 +0000 (20:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1726678 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/expr.xml.meta
docs/manual/mod/mod_deflate.xml.fr
docs/manual/mod/mod_deflate.xml.ja
docs/manual/mod/mod_deflate.xml.ko
docs/manual/mod/mod_proxy_hcheck.xml

index d5a2e5e1a51ac2993572999fded854013f9172b5..baaa5f7830cfdc671c6e8f60641cef42662d0852 100644 (file)
@@ -7,6 +7,7 @@
   <relpath>.</relpath>
 
   <variants>
+    <variant>edited</variant>
     <variant>en</variant>
     <variant>fr</variant>
   </variants>
index 1a7fdf0cbf08a8898c1954318890dbeb30e6ce27..66b809b191f1e6169485744fd2acf6e339693ec9 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1724273:1726574 (outdated) -->
+<!-- English Revision: 1724273:1726578 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index f14bfecfe2b487d8380b5d297f0a683f443c69a2..151c977e0d790f93783f4fea58ef66ba6547ce1d 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 420990:1726574 (outdated) -->
+<!-- English Revision: 420990:1726578 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 04d40d664cc39888015dae39f65196b24d0c8181..3b82ecbcea0b75d2acaf5c5f6d95d607ee911d9d 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:1726574 (outdated) -->
+<!-- English Revision: 151408:1726578 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index f72fb4e1638df316c5ac86306859a66127f9be8e..e5a1c520c9325b242bf79266a1c3d813233b3cb2 100644 (file)
@@ -105,7 +105,7 @@ ProxyHCExpr in_maint {hc('body') !~ /Under maintenance/}
 &lt;Proxy balancer://foo&gt;
   BalancerMember http://www.example.com/  hcmethod=GET hcexpr=in_maint hcuri=/status.php
   BalancerMember http://www2.example.com/  hcmethod=HEAD hcexpr=ok234 hcinterval=10
-  BalancerMember http://www3.example.com/ hcmethod=TCP hcinterval=5
+  BalancerMember http://www3.example.com/ hcmethod=TCP hcinterval=5 hcpasses=2 hcfails=3
   BalancerMember http://www4.example.com/
 &lt;/Proxy&gt;
 
@@ -120,7 +120,10 @@ every 30 seconds, which is the default.</p>
 
 <p><code>http://www2.example.com/</code> is checked by sending a simple <code>HEAD</code> request every
 10 seconds and making sure that the response status is 2xx, 3xx or 4xx. <code>http://www3.example.com/</code> is checked
-every 5 seconds by simply ensuring that the socket to that server is up and <code>http://www4.example.com/</code> is
+every 5 seconds by simply ensuring that the socket to that server is up. If the backend is marked as
+"down" and it passes 2 health check, it will be re-enabled and added back into the load balancer.
+It takes 3 back-to-back health check failures to disable the server and move it out
+of rotation. Finally, <code>http://www4.example.com/</code> is
 not dynamically checked at all.</p>
 
 </section>