You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ia...@apache.org on 2002/01/29 20:33:25 UTC

cvs commit: httpd-2.0/docs/manual/mod mod_proxy.html

ianh        02/01/29 11:33:25

  Modified:    docs/manual/mod mod_proxy.html
  Log:
  just make it a bit more explicit
  
  Revision  Changes    Path
  1.68      +2 -1      httpd-2.0/docs/manual/mod/mod_proxy.html
  
  Index: mod_proxy.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_proxy.html,v
  retrieving revision 1.67
  retrieving revision 1.68
  diff -u -r1.67 -r1.68
  --- mod_proxy.html	29 Jan 2002 19:00:45 -0000	1.67
  +++ mod_proxy.html	29 Jan 2002 19:33:25 -0000	1.68
  @@ -375,10 +375,11 @@
   The ! directive is usefull in situations where you don't want to reverse-proxy
   a subdirectory. eg.
   <PRE>
  -        ProxyPass /mirror/foo http://foo.com
           ProxyPass /mirror/foo/i !
  +        ProxyPass /mirror/foo http://foo.com
   </PRE>
   will proxy all requests to /mirror/foo to foo.com EXCEPT requests made to /mirror/foo/i
  +<b>NB: order is important. you need to put the exclusions BEFORE the general proxypass directive</b>
   </P>
   <HR>