]> Sergey Matveev's repositories - uploader.git/blob - README
Example command line usage
[uploader.git] / README
1 Simplest form file uploader.
2
3 It just saves uploaded file from HTML form to the new file on the disk.
4 Also it calculates BLAKE2b checksum, replying with it in the answer.
5
6 You can upload files with curl:
7
8     curl -F fileupload=@somedata.tar.gpg http://localhost:8086/upload/
9
10     curl -F fileupload=@somedata.tar.gpg -F comment="optional comment" http://localhost:8086/upload/
11
12 You can verify integrity locally:
13
14     b2sum -a blake2b somedata.tar.gpg
15
16 You can enable mail notification with -notify-to and -notify-from options.
17
18 uploader is free software: see the file COPYING for copying conditions.