in reply to Re: HTTP to FTP proxy
in thread HTTP to FTP proxy

From the mod_proxy docs. I interpret this to mean no uploads, although it isn't quite clear.

How can I do FTP upload?

Currently, only GET is supported for FTP in mod_proxy. You can of course use HTTP upload (POST or PUT) through an Apache proxy.

Replies are listed 'Best First'.
Re^3: HTTP to FTP proxy
by salva (Canon) on Nov 18, 2010 at 13:08 UTC
    It seems you are right, PUT is not supported.

    Maybe you could use the CONNECT method instead and let the client talk directly to the FTP server.

    Something as drawn in the following diagram:

    .---------------. .------------------. | FTP Client | | Apache Listening | .---- +------. | with HTTPS |---------------| for SSL | | FTP + | | over SSL | SSL conn. | | | Ser +ver | | Proxy support |-------------------. .---------------. + | | | FTP conn |<-CONNECT->| FTP conn. | + | | |-------------------' '---------------' + | | | | | | + | | |---------------| | | + | | | | | '---- +------' '---------------' '------------------'