]> granicus.if.org Git - apache/commitdiff
xforms
authorJim Jagielski <jim@apache.org>
Fri, 12 Feb 2016 12:16:49 +0000 (12:16 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 12 Feb 2016 12:16:49 +0000 (12:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1730006 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/expr.html.en
docs/manual/expr.xml.meta
docs/manual/howto/reverse_proxy.html.en

index 4b3414cbe99743a677dcd3945322e96b067cfa84..418316a81c19ccd6d5e493a5f4c174d9969d709c 100644 (file)
@@ -23,7 +23,8 @@
 <div id="path">
 <a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="./">Version 2.5</a></div><div id="page-content"><div id="preamble"><h1>Expressions in Apache HTTP Server</h1>
 <div class="toplang">
-<p><span>Available Languages: </span><a href="./en/expr.html" title="English">&nbsp;en&nbsp;</a> |
+<p><span>Available Languages: </span><a href="./edited/expr.html" hreflang="edited" rel="alternate" title="">&nbsp;edited&nbsp;</a> |
+<a href="./en/expr.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="./fr/expr.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a></p>
 </div>
 
@@ -622,7 +623,8 @@ Header always set CustomHeader my-value "expr=%{REQUEST_URI} =~ m#^/special_path
     are available for versions 2.5.0 and later.</p>
 </div></div>
 <div class="bottomlang">
-<p><span>Available Languages: </span><a href="./en/expr.html" title="English">&nbsp;en&nbsp;</a> |
+<p><span>Available Languages: </span><a href="./edited/expr.html" hreflang="edited" rel="alternate" title="">&nbsp;edited&nbsp;</a> |
+<a href="./en/expr.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="./fr/expr.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a></p>
 </div><div class="top"><a href="#page-header"><img src="./images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Comments</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&amp;A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our <a href="http://httpd.apache.org/lists.html">mailing lists</a>.</div>
 <script type="text/javascript"><!--//--><![CDATA[//><!--
index d5a2e5e1a51ac2993572999fded854013f9172b5..baaa5f7830cfdc671c6e8f60641cef42662d0852 100644 (file)
@@ -7,6 +7,7 @@
   <relpath>.</relpath>
 
   <variants>
+    <variant>edited</variant>
     <variant>en</variant>
     <variant>fr</variant>
   </variants>
index f68e8aad8ff7b00a1cb0a030a6f756112e062a99..0b0cd58654c4e3ea8f093c054c51c1d4bb6c61b9 100644 (file)
@@ -82,7 +82,7 @@
       to a single backend:
     </p>
 
-    <pre class="prettyprint lang-config">ProxyPass "/"  "http://www.example.com"</pre>
+    <pre class="prettyprint lang-config">ProxyPass "/"  "http://www.example.com/"</pre>
 
 
     <p>
       directive is most often required:
     </p>
 
-    <pre class="prettyprint lang-config">ProxyPass "/"  "http://www.example.com"
-ProxyPassReverse "/"  "http://www.example.com"</pre>
+    <pre class="prettyprint lang-config">ProxyPass "/"  "http://www.example.com/"
+ProxyPassReverse "/"  "http://www.example.com/"</pre>
 
 
     <p>Only specific URIs can be proxied, as shown in this example:</p>
 
-    <pre class="prettyprint lang-config">ProxyPass "/images"  "http://www.example.com"
-ProxyPassReverse "/images"  "http://www.example.com"</pre>
+    <pre class="prettyprint lang-config">ProxyPass "/images"  "http://www.example.com/"
+ProxyPassReverse "/images"  "http://www.example.com/"</pre>
 
 
     <p>In the above, any requests which start with the <code>/images</code>
@@ -130,8 +130,8 @@ ProxyPassReverse "/images"  "http://www.example.com"</pre>
     ProxySet lbmethod=bytraffic
 &lt;/Proxy&gt;
 
-ProxyPass "/images"  "balancer://myset"
-ProxyPassReverse "/images"  "balancer://myset"</pre>
+ProxyPass "/images/"  "balancer://myset/"
+ProxyPassReverse "/images/"  "balancer://myset/"</pre>
 
 
     <p>
@@ -170,8 +170,8 @@ ProxyPassReverse "/images"  "balancer://myset"</pre>
     ProxySet lbmethod=bytraffic
 &lt;/Proxy&gt;
 
-ProxyPass "/images"  "balancer://myset"
-ProxyPassReverse "/images"  "balancer://myset"</pre>
+ProxyPass "/images"  "balancer://myset/"
+ProxyPassReverse "/images"  "balancer://myset/"</pre>
 
 
   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -199,8 +199,8 @@ ProxyPassReverse "/images"  "balancer://myset"</pre>
     ProxySet lbmethod=byrequests
 &lt;/Proxy&gt;
 
-ProxyPass "/images"  "balancer://myset"
-ProxyPassReverse "/images"  "balancer://myset"</pre>
+ProxyPass "/images/"  "balancer://myset/"
+ProxyPassReverse "/images/"  "balancer://myset/"</pre>
 
 
     <p>