source: code/trunk/README@ 52

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

Simplify README

File size: 775 bytes
Line 
1partage
2=======
3File upload system based on HTTP.
4
5Features
6--------
7+ No javascript needed!
8+ Link expiration
9+ Mimetype support
10+ Random filenames
11+ Multiple file uploads
12+ Privilege drop
13+ chroot(2) support
14+ FastCGI support
15
16Usage
17-----
18Refer to the partage(1) manual page for details and examples.
19
20 partage [-v] [-f partage.conf]
21
22Configuration is done through its configuration file, partage.conf(5).
23The format is that of the INI file format.
24
25Uploading files is done via PUT and POST requests. Multiple files can
26be 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
31Installation
32------------
33Edit the `config.mk` file to match your setup, then run the following:
34
35 $ mk
36 # mk install
Note: See TracBrowser for help on using the repository browser.