Last change
on this file since 60 was 53, checked in by dev, 4 years ago |
Add example screenshot to the README
|
File size:
829 bytes
|
Rev | Line | |
---|
[36] | 1 | partage
|
---|
| 2 | =======
|
---|
[53] | 3 | HTTP based File upload system.
|
---|
[36] | 4 |
|
---|
[53] | 5 | 
|
---|
| 6 |
|
---|
[36] | 7 | Features
|
---|
| 8 | --------
|
---|
| 9 | + Link expiration
|
---|
| 10 | + Mimetype support
|
---|
[52] | 11 | + Random filenames
|
---|
[36] | 12 | + Multiple file uploads
|
---|
[53] | 13 | + Javascript not needed
|
---|
[52] | 14 | + Privilege drop
|
---|
| 15 | + chroot(2) support
|
---|
| 16 | + FastCGI support
|
---|
[36] | 17 |
|
---|
| 18 | Usage
|
---|
| 19 | -----
|
---|
| 20 | Refer to the partage(1) manual page for details and examples.
|
---|
| 21 |
|
---|
| 22 | partage [-v] [-f partage.conf]
|
---|
| 23 |
|
---|
[52] | 24 | Configuration is done through its configuration file, partage.conf(5).
|
---|
[36] | 25 | The format is that of the INI file format.
|
---|
| 26 |
|
---|
[52] | 27 | Uploading files is done via PUT and POST requests. Multiple files can
|
---|
| 28 | be sent via POST requests.
|
---|
[36] | 29 |
|
---|
[52] | 30 | curl -T file.png http://domain.tld
|
---|
| 31 | curl -F file=file.png -F expiry=3600 http://domain.tld
|
---|
[36] | 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.