]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Rebuild
authorRichard Bowen <rbowen@apache.org>
Mon, 24 Mar 2014 19:36:36 +0000 (19:36 +0000)
committerRichard Bowen <rbowen@apache.org>
Mon, 24 Mar 2014 19:36:36 +0000 (19:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1581013 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy_express.html.en

index ebe469c7baf73d284c620b1d55e3e6341132394f..1de6721ec046ec219c820f2ddbf19c5954aff7a0 100644 (file)
     <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.