]> granicus.if.org Git - apache/commitdiff
Generated doc changes
authorMike Rumph <mrumph@apache.org>
Thu, 3 Dec 2015 15:06:55 +0000 (15:06 +0000)
committerMike Rumph <mrumph@apache.org>
Thu, 3 Dec 2015 15:06:55 +0000 (15:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1717779 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_http2.html.en
docs/manual/mod/mod_proxy.html.en
docs/manual/mod/mod_proxy.xml.fr
docs/manual/mod/mod_proxy.xml.ja
docs/manual/mod/mod_proxy.xml.meta
docs/manual/mod/mod_proxy_fdpass.html.en
docs/manual/rewrite/remapping.html.en

index 031f7936d73965fcf8526454e2179f3a6f46c06c..639246a58d7879b2cafb141719d9cd13de80a830 100644 (file)
 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_http2</td></tr>
 <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in version 2.4.18 and later. For having an
-        effect, a nghttp2 library version newer than 1.4.0 is necessary.</td></tr>
+        effect, a nghttp2 library version 1.5.0 or newer is necessary.</td></tr>
 </table>
             <p>
                 This directive defines the priority handling of pushed responses
index 7b30cedb93e35dd5273f728f99a17e7e0144ac4f..1ec071eee7a5ac0ae686093bd802000f17e2b5dd 100644 (file)
@@ -1306,6 +1306,11 @@ ProxyPass "/mirror/foo"   "http://backend.example.com"</pre>
         connection will not be used again; it will be closed at some
         later time.
     </td></tr>
+    <tr><td>flusher</td>
+        <td>flush</td>
+        <td><p>Name of the provider used by <code class="module"><a href="../mod/mod_proxy_fdpass.html">mod_proxy_fdpass</a></code>.
+        See the documentation of this module for more details.</p>
+    </td></tr>
 
     </table>
 
index 5265d21d1341dba928d8cb8b601314e7cc92f34e..3103f85d017234781694a07250b3ca187bbdca6c 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: 1700601 -->
+<!-- English Revision: 1700601:1717063 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 644d6d61c9ff4110a1022d5c5cca532967f5c9fd..01b04be5bcb423fa10ccfcaea839d1c37a59fc02 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: 344971:1700601 (outdated) -->
+<!-- English Revision: 344971:1717063 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 38a79fdda73051e6f035124b21c4af3bff8e6129..f0185375d448127624a8715f7540d52668653323 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
   </variants>
 </metafile>
index fde9b5156c721989282c1a7a5a94157d364d7eee..7022216b4a1c53203c6f9b465594263cf2f6fb73 100644 (file)
 
     <p>The module has a <code>proxy_fdpass_flusher</code> provider interface,
     which allows another module to optionally send the response headers, or even
-    the start of the response body.  The default flush provider disables keep-alive,
-    and sends the response headers, letting the external process just send a
-    response body.</p>
+    the start of the response body.  The default <code>flush</code> provider
+    disables keep-alive, and sends the response headers, letting the external
+    process just send a response body.
+    </p>
+    
+    <p>In order to use another provider, you have to set the <code>flusher</code>
+    parameter in the <code class="directive"><a href="../mod/mod_proxy.html#proxypass">ProxyPass</a></code> directive.
+    </p>
 
     <p>At this time the only data passed to the external process is the client
     socket. To receive a client socket, call recvfrom with an allocated
index 49efabe13200ffafbe5155f314c17d2a7ccd2fcf..fd49e08d1f1d121b7c8a586298b33d050a6f13cd 100644 (file)
@@ -289,7 +289,7 @@ hostname(s).</p>
 
 <p>You can alternatively accomplish this using the
 <code class="directive"><a href="../mod/core.html#if">&lt;If&gt;</a></code>
-directive:</p>
+directive: (<strong>2.4 and later</strong>)</p>
 
 <pre class="prettyprint lang-config">&lt;If "%{HTTP_HOST} != 'www.example.com'"&gt;
     Redirect "/" "http://www.example.com/"