http2back provides a HTTP server to upload files to various backends :
- Filesystem
- FTP
- AWS S3
- Dropbox
Requirements :
- Go lang > 1.5
- glide
git clone https://github.com/mirakl/http2back
cd http2back
glide install && make
Once configured (see next section), just run the server :
./http2back filesystem --dest=/tmp
2017/10/11 11:30:44 Starting http server on 127.0.0.1:8080 using provider Filesystem (tmp)
Send something using the client of your choice :
curl -X PUT -F [email protected] http://127.0.0.1:8080/
Configuration is done using command arguments :
./http2back [--bind=<binding-address>] [--port=<server-port>] COMMAND [OPTS]
Each command corresponds to one provider, pop help using :
./http2back COMMAND help
The following dependencies have been used :