Software / code / prosody-modules
Comparison
mod_http_upload/README.markdown @ 1816:e5d723afd6ba
mod_http_upload: Add README
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 01 Sep 2015 12:22:43 +0200 |
| child | 1840:3bd265f7a95f |
comparison
equal
deleted
inserted
replaced
| 1815:abacf6698d97 | 1816:e5d723afd6ba |
|---|---|
| 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 | |
| 13 Component | |
| 14 --------- | |
| 15 | |
| 16 Standalone component: | |
| 17 | |
| 18 Component "upload.example.org" "http_upload" | |
| 19 | |
| 20 Existing component | |
| 21 ------------------ | |
| 22 | |
| 23 Component "proxy.example.org" "proxy65" | |
| 24 modules_enabled = { | |
| 25 "http_upload"; | |
| 26 } | |
| 27 | |
| 28 On VirtualHosts | |
| 29 --------------- | |
| 30 | |
| 31 -- In the Global section or under a specific VirtualHosts line | |
| 32 modules_enabled = { | |
| 33 -- other modules | |
| 34 "http_upload"; | |
| 35 } |