rse         98/09/10 00:30:51

  Modified:    src      CHANGES
               htdocs/manual/mod mod_proxy.html
  Log:
  Fix documentation of ProxyPass/ProxyPassReverse according to the
  trailing slash problem.
  
  Submitted by: Jon Drukman <[EMAIL PROTECTED]>
  Reviewed by: Ralf S. Engelschall
  PR: 2933
  
  Revision  Changes    Path
  1.1051    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1050
  retrieving revision 1.1051
  diff -u -r1.1050 -r1.1051
  --- CHANGES   1998/09/10 07:16:32     1.1050
  +++ CHANGES   1998/09/10 07:30:49     1.1051
  @@ -1,4 +1,7 @@
   Changes with Apache 1.3.2
  +
  +  *) Fix documentation of ProxyPass/ProxyPassReverse according to the
  +     trailing slash problem. [Jon Drukman <[EMAIL PROTECTED]>] PR#2933
     
     *) Remove `-msym' option from LDFLAGS_SHLIB for the OSF1 platform, because
        it's only supported under OSF1 4.0 and higher. But because our GuessOS 
is
  
  
  
  1.46      +3 -3      apache-1.3/htdocs/manual/mod/mod_proxy.html
  
  Index: mod_proxy.html
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_proxy.html,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- mod_proxy.html    1998/09/08 21:15:53     1.45
  +++ mod_proxy.html    1998/09/10 07:30:51     1.46
  @@ -196,7 +196,7 @@
   <P>
   Suppose the local server has address <SAMP>http://wibble.org/</SAMP>; then
   <PRE>
  -   ProxyPass /mirror/foo http://foo.com
  +   ProxyPass /mirror/foo/ http://foo.com/
   </PRE>
   will cause a local request for the
   &lt;<SAMP>http://wibble.org/mirror/foo/bar</SAMP>&gt; to be
  @@ -248,8 +248,8 @@
   Example:<BR>
   Suppose the local server has address <SAMP>http://wibble.org/</SAMP>; then
   <PRE>
  -   ProxyPass         /mirror/foo http://foo.com
  -   ProxyPassReverse  /mirror/foo http://foo.com
  +   ProxyPass         /mirror/foo/ http://foo.com/
  +   ProxyPassReverse  /mirror/foo/ http://foo.com/
   </PRE>
   will not only cause a local request for the
   &lt;<SAMP>http://wibble.org/mirror/foo/bar</SAMP>&gt; to be internally
  
  
  

Reply via email to