]> granicus.if.org Git - apache/commitdiff
examples are block elements and cannot occur within <p> elements.
authorAndré Malo <nd@apache.org>
Wed, 9 Nov 2011 20:23:46 +0000 (20:23 +0000)
committerAndré Malo <nd@apache.org>
Wed, 9 Nov 2011 20:23:46 +0000 (20:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199948 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy_ajp.xml

index c501ad2b5f795d35f63d9c35bc573bb05b7570fd..10f25ccdbf4ccad80842aaa9ec6d84b542522dd9 100644 (file)
 <section id="usage"><title>Usage</title>
     <p>This module is used to reverse proxy to a backend application server
     (e.g. Apache Tomcat) using the AJP13 protocol. The usage is similar to
-    an HTTP reverse proxy, but uses the <code>ajp://</code> prefix:
+    an HTTP reverse proxy, but uses the <code>ajp://</code> prefix:</p>
 
     <example><title>Simple Reverse Proxy</title>
     ProxyPass /app ajp://backend.example.com:8009/app
     </example>
 
-    Balancers may also be used:
+    <p>Balancers may also be used:</p>
     <example><title>Balancer Reverse Proxy</title>
       &lt;Proxy balancer://cluster&gt;<br />
       <indent>
       &lt;/Proxy&gt;<br />
       ProxyPass /app balancer://cluster/app
     </example>
-    </p><p>
-    Note that usually no
+
+    <p>Note that usually no
     <directive module="mod_proxy">ProxyPassReverse</directive>
     directive is necessary. The AJP request includes the original host
     header given to the proxy, and the application server can be expected
     to generate self-referential headers relative to this host, so no
-    rewriting is necessary.
-    </p><p>
-    The main exception is when the URL path on the proxy differs from that on the
+    rewriting is necessary.</p>
+    
+    <p>The main exception is when the URL path on the proxy differs from that
+    on the
     backend. In this case, a redirect header can be rewritten relative to the
-    original host URL (not the backend <code>ajp://</code> URL), for example:
+    original host URL (not the backend <code>ajp://</code> URL), for
+    example:</p>
     <example><title>Rewriting Proxied Path</title>
       ProxyPass /apps/foo ajp://backend.example.com:8009/foo<br />
       ProxyPassReverse /apps/foo http://www.example.com/foo
     </example>
-    However, it is usually better to deploy the application on the backend
+    <p>However, it is usually better to deploy the application on the backend
     server at the same path as the proxy rather than to take this approach.
     </p>
 </section>