source: code/trunk/README@ 61

Last change on this file since 61 was 53, checked in by dev, 4 years ago

Add example screenshot to the README

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