source:
code/trunk/README.md
Last change on this file was 65, checked in by , 21 months ago | |
---|---|
File size: 776 bytes |
Line | |
---|---|
1 | marisa |
2 | ====== |
3 | HTTP based File upload system. |
4 | |
5 | Features |
6 | -------- |
7 | + Link expiration |
8 | + Mimetype support |
9 | + Random filenames |
10 | + Multiple file uploads |
11 | + Javascript not needed |
12 | + Privilege drop |
13 | + chroot(2) support |
14 | + FastCGI support |
15 | |
16 | Usage |
17 | ----- |
18 | Refer to the marisa(1) manual page for details and examples. |
19 | |
20 | marisa [-v] [-f marisa.conf] |
21 | |
22 | Configuration is done through its configuration file, marisa.conf(5). |
23 | The format is that of the INI file format. |
24 | |
25 | Uploading files is done via PUT and POST requests. Multiple files can |
26 | be sent via POST requests. |
27 | |
28 | curl -T file.png http://domain.tld |
29 | curl -F file=file.png -F expiry=3600 http://domain.tld |
30 | |
31 | Installation |
32 | ------------ |
33 | Edit the `config.mk` file to match your setup, then run the following: |
34 | |
35 | $ (b)make |
36 | # (b)make install |
Note:
See TracBrowser
for help on using the repository browser.