From bee607f8957100563ed5a8e6bd93a9a081daaf36 Mon Sep 17 00:00:00 2001 From: Rich Bowen <rbowen@apache.org> Date: Mon, 24 Mar 2014 19:28:49 +0000 Subject: [PATCH] It does more than just a ProxyPass, but also looks at the HOST header, 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 | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/manual/mod/mod_proxy_express.xml b/docs/manual/mod/mod_proxy_express.xml index 0119a2eca3..2d8d44086d 100644 --- a/docs/manual/mod/mod_proxy_express.xml +++ b/docs/manual/mod/mod_proxy_express.xml @@ -61,10 +61,13 @@ <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"> +<VirtualHost *:80> + ServerName front.end.server + ProxyPass / back.end.server:port + ProxyPassReverse / back.end.server:port +</VirtualHost> + </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. -- 2.40.0