Mercurial > prosody-modules
comparison mod_http_index/README.markdown @ 1828:318f38d79ea9
mod_http_index: Add README file
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 04 Sep 2015 00:29:08 +0200 |
parents | |
children | 99a025dc4f6b |
comparison
equal
deleted
inserted
replaced
1827:9376e870f0e1 | 1828:318f38d79ea9 |
---|---|
1 Introduction | |
2 ============ | |
3 | |
4 This module produces a list of enabled HTTP "apps" exposed from Prosody | |
5 at `http://example.org:5280/`, e.g. mod\_http\_muc\_log, | |
6 mod\_http\_files or mod\_admin\_web. If you think Prosodys default | |
7 "root" web page (a 404 error usually) is boring, this might be the | |
8 module for you! :) | |
9 | |
10 Configuration | |
11 ============= | |
12 | |
13 Install and enable like any other module. Also see [Prosodys HTTP | |
14 documentation](https://prosody.im/doc/http). | |
15 | |
16 ``` {.lua} | |
17 modules_enabled = { | |
18 -- other modules | |
19 "http_index"; | |
20 } | |
21 | |
22 -- optional, defaults to a file next to the module | |
23 http_index_template = "/path/to/template.html" | |
24 ``` |