You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ni...@apache.org on 2004/07/10 18:38:12 UTC

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

niq         2004/07/10 09:38:12

  Modified:    docs/manual/mod mod_proxy_ftp.xml mod_proxy.xml
  Log:
  Document the fact that FTP support in mod_proxy is limited to GET.
  
  Revision  Changes    Path
  1.6       +3 -2      httpd-2.0/docs/manual/mod/mod_proxy_ftp.xml
  
  Index: mod_proxy_ftp.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_proxy_ftp.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mod_proxy_ftp.xml	17 Apr 2004 10:49:23 -0000	1.5
  +++ mod_proxy_ftp.xml	10 Jul 2004 16:38:12 -0000	1.6
  @@ -31,7 +31,8 @@
   <summary>
       <p>This module <em>requires</em> the service of <module
       >mod_proxy</module>. It provides support for the proxying
  -    FTP sites.</p>
  +    FTP sites.  Note that FTP support is currently limited to
  +    the GET method.</p>
   
       <p>Thus, in order to get the ability of handling FTP proxy requests,
       <module>mod_proxy</module> and <module>mod_proxy_ftp</module>
  
  
  
  1.31      +10 -1     httpd-2.0/docs/manual/mod/mod_proxy.xml
  
  Index: mod_proxy.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_proxy.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- mod_proxy.xml	29 Jun 2004 06:59:11 -0000	1.30
  +++ mod_proxy.xml	10 Jul 2004 16:38:12 -0000	1.31
  @@ -196,6 +196,10 @@
         <example>
   <pre>application/octet-stream   bin dms lha lzh exe class tgz taz</pre>
         </example>
  +	<p>Alternatively you may prefer to default everything to binary:</p>
  +      <example>
  +<pre>DefaultType application/octet-stream</pre>
  +      </example>
       </section> <!-- /mimetypes -->
   
       <section id="type"><title>How can I force an FTP ASCII download of
  @@ -207,6 +211,11 @@
         ASCII transfer. (FTP Directory listings are always executed in ASCII mode,
         however.)</p>
       </section> <!-- /type -->
  +
  +    <section id="ftpnonget"><title>How can I do FTP upload?</title>
  +	<p>Currently, only GET is supported for FTP in mod_proxy.  You can
  +	of course use HTTP upload (POST or PUT) through an Apache proxy.</p>
  +    </section>
   
       <section id="percent2fhck"><title>How can I access FTP files outside
       of my home directory?</title>