You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2014/03/24 20:36:36 UTC

svn commit: r1581013 - /httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.en

Author: rbowen
Date: Mon Mar 24 19:36:36 2014
New Revision: 1581013

URL: http://svn.apache.org/r1581013
Log:
Rebuild

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.en

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.en?rev=1581013&r1=1581012&r2=1581013&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_express.html.en Mon Mar 24 19:36:36 2014
@@ -62,10 +62,12 @@
     <li>It does not support regex or pattern matching at all.
     </li>
     <li>It emulates:
-      <div class="example"><p><code>
-        ProxyPass / backend.server:port<br />
-        ProxyPassReverse / backend.server:port<br />
-      </code></p></div>
+      <pre class="prettyprint lang-config">&lt;VirtualHost *:80&gt;
+   ServerName front.end.server
+   ProxyPass / back.end.server:port
+   ProxyPassReverse / back.end.server:port
+&lt;/VirtualHost&gt;</pre>
+
       That is, the entire URL is appended to the mapped backend
       URL. This is in keeping with the intent of being a simple
       but fast reverse proxy switch.