]> granicus.if.org Git - apache/commitdiff
It does more than just a ProxyPass, but also looks at the HOST header,
authorRich Bowen <rbowen@apache.org>
Mon, 24 Mar 2014 19:28:49 +0000 (19:28 +0000)
committerRich Bowen <rbowen@apache.org>
Mon, 24 Mar 2014 19:28:49 +0000 (19:28 +0000)
so this gives somewhat deeper insight into what the end result looks
like.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1581011 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy_express.xml

index 0119a2eca34cea9ecfccadef780f6fd1010e78e1..2d8d44086db675f6f802194dd8f20d8f04069f31 100644 (file)
     <li>It does not support regex or pattern matching at all.
     </li>
     <li>It emulates:
-      <example>
-        ProxyPass / backend.server:port<br />
-        ProxyPassReverse / backend.server:port<br />
-      </example>
+      <highlight language="config">
+&lt;VirtualHost *:80&gt;
+   ServerName front.end.server
+   ProxyPass / back.end.server:port
+   ProxyPassReverse / back.end.server:port
+&lt;/VirtualHost&gt;
+      </highlight>
       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.