Mercurial > prosody-modules
view mod_http_upload/README.markdown @ 2235:c5ee48e27d01
mod_http_muc_log: Link to next day with content, regardless of type (simplifes)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 08 Jul 2016 22:39:41 +0200 |
parents | e276ed33bc1a |
children | 1266f5c17c0d |
line wrap: on
line source
--- labels: Stage-Alpha description: HTTP File Upload ... Introduction ============ This module implements [XEP-0363], which lets clients upload files over HTTP. Configuration ============= mod\_http\_upload relies on Prosodys HTTP server and mod\_http for serving HTTP requests. See [Prosodys HTTP server documentation](https://prosody.im/doc/http) for information about how to configure ports, HTTP Host names etc. Simply add a new Component definition: Component "upload.example.org" "http_upload" Limits ------ A maximum file size can be set by: ``` {.lua} http_upload_file_size_limit = 123 -- bytes ``` Default is 1MB (1024*1024). Path ---- By default, uploaded files are put in a sub-directory of the default Prosody storage path (usually `/var/lib/prosody`). This can be changed: ``` {.lua} http_upload_path = "/path/to/uploded/files" ``` Compatibility ============= Works with Prosody 0.9.x and later.