]> granicus.if.org Git - apache/commitdiff
Xforms.
authorRainer Jung <rjung@apache.org>
Fri, 2 Jan 2015 11:42:59 +0000 (11:42 +0000)
committerRainer Jung <rjung@apache.org>
Fri, 2 Jan 2015 11:42:59 +0000 (11:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1649002 13f79535-47bb-0310-9956-ffa450edef68

24 files changed:
docs/manual/mod/mod_proxy.html.en
docs/manual/mod/mod_proxy.html.fr
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_ajp.html.en
docs/manual/mod/mod_proxy_ajp.xml.ja
docs/manual/mod/mod_proxy_connect.html.en
docs/manual/mod/mod_proxy_connect.xml.ja
docs/manual/style/description.xml
docs/manual/style/lang-targets.xml
docs/manual/style/manual.da.xsl
docs/manual/style/manual.de.xsl
docs/manual/style/manual.en.xsl
docs/manual/style/manual.es.xsl
docs/manual/style/manual.fr.xsl
docs/manual/style/manual.ja.xsl
docs/manual/style/manual.ko.xsl
docs/manual/style/manual.pt-br.xsl
docs/manual/style/manual.ru.xsl
docs/manual/style/manual.tr.xsl
docs/manual/style/manual.zh-cn.xsl
docs/manual/style/xsl/util/allmodules.xml
docs/manual/style/xsl/util/designations.xml

index be951720a9638189424258e50828b4a0a4d71872..e5e6ba64922f97a3323f1330b01119de221f0883 100644 (file)
@@ -714,6 +714,17 @@ NoProxy         .example.com 192.168.112.0/21</pre>
 &lt;/Proxy&gt;</pre>
 
 
+    <p>The next example will allow web clients from the specified IP
+    addresses to issue <code>CONNECT</code> requests to access the
+    <code>https://www.example.com/</code> SSL server, if
+    <code class="module"><a href="../mod/mod_proxy_connect.html">mod_proxy_connect</a></code> is enabled.
+    </p>
+
+   <pre class="prettyprint lang-config">&lt;Proxy www.example.com:443&gt;
+  Require ip 192.168.0.0/16
+&lt;/Proxy&gt;</pre>
+
+
     <div class="note"><h3>Differences from the Location configuration section</h3>
       <p>A backend URL matches the configuration section if it begins with the 
       the <var>wildcard-url</var> string, even if the last path segment in the
index 1d4e85a9cf71ec2eadf3c39c8ed378d6a2d80548..f650af770e3fdcdd99fd8ed5e79852a0b2aa6412 100644 (file)
@@ -28,6 +28,8 @@
 <a href="../fr/mod/mod_proxy.html" title="Français">&nbsp;fr&nbsp;</a> |
 <a href="../ja/mod/mod_proxy.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Serveur mandataire/passerelle multi-protocole</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
 <tr><th><a href="module-dict.html#ModuleIdentifier">Identificateur de Module:</a></th><td>proxy_module</td></tr>
index bc50750a4a4e556db33048a452a0c4f681106482..b1bedc2b5236f7a7e4e7e566de46a643ccdbaff9 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: 1647009 -->
+<!-- English Revision: 1647009:1648846 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 200d59dbf47af9094886f85b2bad009fa0d5af80..ae60ed7f2b6194f3fed4eb05f50150086419028a 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:1647009 (outdated) -->
+<!-- English Revision: 344971:1648846 (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 c30778970aed6b7c7f33124d09486cbdc29305e7..f01f27fcd6c1eb40baca5de64289e276a3b464e1 100644 (file)
@@ -155,11 +155,7 @@ ProxyPassReverse /apps/foo http://www.example.com/foo</pre>
 <h2><a name="basppacketstruct" id="basppacketstruct">Basic Packet Structure</a></h2>
     <p>There is a bit of an XDR heritage to this protocol, but it differs
     in lots of ways (no 4 byte alignment, for example).</p>
-    <p>Byte order: I am not clear about the endian-ness of the individual
-    bytes.  I'm guessing the bytes are little-endian, because that's what
-    XDR specifies, and I'm guessing that sys/socket library is magically
-    making that so (on the C side).  If anyone with a better knowledge of
-    socket calls can step in, that would be great.</p>
+    <p>AJP13 uses network byte order for all data types.</p>
     <p>There are four data types in the protocol: bytes, booleans,
     integers and strings.</p>
     <dl>
@@ -572,9 +568,9 @@ AJP13_GET_BODY_CHUNK :=
   
   <h3>End Response</h3>
     <p>Signals the end of this request-handling cycle.  If the
-    <code>reuse</code> flag is true <code>(==1)</code>, this TCP connection can
-    now be used to handle new incoming requests.  If <code>reuse</code> is false
-    (anything other than 1 in the actual C code), the connection should
+    <code>reuse</code> flag is true <code>(anything other than 0 in the actual
+    C code)</code>, this TCP connection can now be used to handle new incoming
+    requests.  If <code>reuse</code> is false (==0), the connection should
     be closed.</p>
   
   <h3>Get Body Chunk</h3>
index 89006275a5624878cc1341657c6fadd336d3eefd..47ded6b6a58d41a4c82dc1998970b420835bca53 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: 669473:1596962 (outdated) -->
+<!-- English Revision: 669473:1649001 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index e35070b098003bdc83ebc4a54ccae7e144a1bfcc..ce2196eed49927a44615b4f5b5ea75f4da5275e2 100644 (file)
         <dt>proxy-source-port</dt>
         <dd>The local port used for the connection to the backend server.</dd>
     </dl>
+
+   <p>CONNECT method requests are controlled by the
+   <code class="directive"><a href="../mod/mod_proxy.html#proxy">Proxy</a></code> block
+   as any other HTTP request going through.
+   SSL connections through a proxy may be filtered explicitely
+   by specifying the target host and port, for instance:
+   </p>
+
+   <pre class="prettyprint lang-config">&lt;Proxy www.example.com:443&gt;
+  Require ip 192.168.0.0/16
+&lt;/Proxy&gt;</pre>
+
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="AllowCONNECT" id="AllowCONNECT">AllowCONNECT</a> <a name="allowconnect" id="allowconnect">Directive</a></h2>
index de554a62833b1e594d8570b5319e555db9106c2a..a87e99f1762fddc315c41f36f3dc28968aa9b990 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: 894522:1560683 (outdated) -->
+<!-- English Revision: 894522:1648846 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 38af94aaa02561363557ae9aa1670a7d1ce746d2..2bc89333c1e793dbd6e50f82796456f043de8e04 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index c2cf4f3477a4b46c94b8309626f09cd8c2db7eeb..7392412f668ff720ef93501947235205b6fe6a0e 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 3566f936a11e5a25e04a8bb0d356ed1f4bab55eb..9d1d93d0252422039282fdd162a6425ef62928f1 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index d16e1c8877822dd2e34a36aa1cb23ac96d9c9fa9..bae43d81a80b9af4462ab6d778a866a06ce1a772 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index ce61496f104ad1c1ebd51c7b7187995410b0df8f..ea9fde85ac22479b41e34a11bfc8506613cfe8e2 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 28cb27edf15d3487dd6f95a424012f35538c44f1..50f61f8dce79e3c41a153cf81e4c62316d05da48 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index d98e29e3c18793571fdcb74da6d3475edd7836ac..9bd43d8e23242c51004941cfefe19eea795bf139 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 85ad8307bd90e7c11ba2616b99c57752f8fae7cb..ca5db3851fd21896a4b9da4fe771674a6072e2a4 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 5d0f8dd49a077f952bc47704049d8e7030c23bf6..25353d3e5b1efcfc03a8e8f17b38ee11b1d4d3d2 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 5d6075a5cba3f169b601ef4decbde2510cbf9381..24c86e7ddc22bc1010cf24b1d2a137a19e4808db 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 4c9ad17d02a1c63ba1158d44a2f99af097735736..5e2f208be452ed903f2e7378d657eb083247c32c 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 9ccbcd9c87981e312e69f696137aa2d6be0dd329..3f8d878f94176e93dd9831c01d8dadd7d995b335 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 5149982541667c7cc33e1d4331d14fb2d92eac0b..5c0e7e9125340ca0778b2ee6c144140ebf01ab4d 100644 (file)
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
index 918bf650fa019bf8f34230ebbc1579718038e0a7..234d464dfbbb8235c6c175f0277262021953869d 100644 (file)
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<items>
+<?xml version="1.0" encoding="utf-8"?><items>
 <item lang="da">../../../mod/allmodules.xml.da</item>
 <item lang="de">../../../mod/allmodules.xml.de</item>
 <item lang="en">../../../mod/allmodules.xml</item>
index 23d37547937d057d0d873723c18661bc4b4454ad..592e953bef0afe34dfc124d598a0e8db6a909e0b 100644 (file)
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<items>
+<?xml version="1.0" encoding="utf-8"?><items>
 <item charset="ISO-8859-1" lang="da">.html.da</item>
 <item charset="ISO-8859-1" lang="de">.html.de</item>
 <item charset="ISO-8859-1" lang="en">.html.en</item>