<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"><VirtualHost *:80>
+ ServerName front.end.server
+ ProxyPass / back.end.server:port
+ ProxyPassReverse / back.end.server:port
+</VirtualHost></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.