Last change
on this file since 54 was 53, checked in by dev, 4 years ago |
Add example screenshot to the README
|
File size:
829 bytes
|
Line | |
---|
1 | partage
|
---|
2 | =======
|
---|
3 | HTTP based File upload system.
|
---|
4 |
|
---|
5 | 
|
---|
6 |
|
---|
7 | Features
|
---|
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 |
|
---|
18 | Usage
|
---|
19 | -----
|
---|
20 | Refer to the partage(1) manual page for details and examples.
|
---|
21 |
|
---|
22 | partage [-v] [-f partage.conf]
|
---|
23 |
|
---|
24 | Configuration is done through its configuration file, partage.conf(5).
|
---|
25 | The format is that of the INI file format.
|
---|
26 |
|
---|
27 | Uploading files is done via PUT and POST requests. Multiple files can
|
---|
28 | be 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 |
|
---|
33 | Installation
|
---|
34 | ------------
|
---|
35 | Edit 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.