Software / code / prosody-modules
Annotate
mod_http_upload/README.markdown @ 1851:03c5639882a7
mod_http_upload: Add support for a file size limit
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Mon, 14 Sep 2015 12:49:54 +0200 |
| parent | 1847:cd98a1103ecf |
| child | 1860:8e5ee3b09e9d |
| rev | line source |
|---|---|
| 1816 | 1 Introduction |
| 2 ============ | |
| 3 | |
| 4 This module provides a space for clients to upload files over HTTP, as | |
| 5 used by [Conversations](http://conversations.im/). | |
| 6 | |
| 7 Configuration | |
| 8 ============= | |
| 9 | |
| 10 The module can either be configured as a component or added to an | |
| 11 existing host or component. | |
| 12 | |
|
1840
3bd265f7a95f
mod_http_upload/README: Point to Prosodys HTTP docs
Kim Alvefur <zash@zash.se>
parents:
1816
diff
changeset
|
13 mod\_http\_upload relies on Prosodys HTTP server and mod\_http for |
|
3bd265f7a95f
mod_http_upload/README: Point to Prosodys HTTP docs
Kim Alvefur <zash@zash.se>
parents:
1816
diff
changeset
|
14 serving HTTP requests. See [Prosodys HTTP server |
|
3bd265f7a95f
mod_http_upload/README: Point to Prosodys HTTP docs
Kim Alvefur <zash@zash.se>
parents:
1816
diff
changeset
|
15 documentation](https://prosody.im/doc/http) for information about how to |
|
3bd265f7a95f
mod_http_upload/README: Point to Prosodys HTTP docs
Kim Alvefur <zash@zash.se>
parents:
1816
diff
changeset
|
16 configure ports, HTTP Host names etc. |
|
3bd265f7a95f
mod_http_upload/README: Point to Prosodys HTTP docs
Kim Alvefur <zash@zash.se>
parents:
1816
diff
changeset
|
17 |
| 1816 | 18 Component |
| 19 --------- | |
| 20 | |
| 21 Standalone component: | |
| 22 | |
| 23 Component "upload.example.org" "http_upload" | |
| 24 | |
| 25 Existing component | |
| 26 ------------------ | |
| 27 | |
| 28 Component "proxy.example.org" "proxy65" | |
| 29 modules_enabled = { | |
| 30 "http_upload"; | |
| 31 } | |
| 32 | |
| 33 On VirtualHosts | |
| 34 --------------- | |
| 35 | |
| 36 -- In the Global section or under a specific VirtualHosts line | |
| 37 modules_enabled = { | |
| 38 -- other modules | |
| 39 "http_upload"; | |
| 40 } | |
|
1847
cd98a1103ecf
mod_http_upload/README: Say it works with 0.9+
Kim Alvefur <zash@zash.se>
parents:
1840
diff
changeset
|
41 |
|
1851
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
42 Limits |
|
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
43 ------ |
|
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
44 |
|
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
45 A maximum file size can be set by: |
|
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
46 |
|
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
47 ``` {.lua} |
|
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
48 http_upload_file_size_limit = 10 * 1024 * 1024 -- this is 10MB in bytes |
|
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
49 ``` |
|
03c5639882a7
mod_http_upload: Add support for a file size limit
Kim Alvefur <zash@zash.se>
parents:
1847
diff
changeset
|
50 |
|
1847
cd98a1103ecf
mod_http_upload/README: Say it works with 0.9+
Kim Alvefur <zash@zash.se>
parents:
1840
diff
changeset
|
51 Compatibility |
|
cd98a1103ecf
mod_http_upload/README: Say it works with 0.9+
Kim Alvefur <zash@zash.se>
parents:
1840
diff
changeset
|
52 ============= |
|
cd98a1103ecf
mod_http_upload/README: Say it works with 0.9+
Kim Alvefur <zash@zash.se>
parents:
1840
diff
changeset
|
53 |
|
cd98a1103ecf
mod_http_upload/README: Say it works with 0.9+
Kim Alvefur <zash@zash.se>
parents:
1840
diff
changeset
|
54 Works with Prosody 0.9.x and later. |