Software / code / prosody-modules
Annotate
mod_http_index/README.markdown @ 2798:e9ca7fd4ad06
mod_auth_dovecot: Support new luasocket unix domain socket API (fixes https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=852250 in Debian Stretch)
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Sat, 14 Oct 2017 23:04:02 -0400 |
| parent | 2487:99a025dc4f6b |
| child | 3751:cb9517827d76 |
| rev | line source |
|---|---|
| 1828 | 1 Introduction |
| 2 ============ | |
| 3 | |
| 4 This module produces a list of enabled HTTP "apps" exposed from Prosody | |
|
2487
99a025dc4f6b
mod_http_index/README: Linkify module names
Kim Alvefur <zash@zash.se>
parents:
1828
diff
changeset
|
5 at `http://example.org:5280/`, e.g. [mod\_http\_muc\_log], |
|
99a025dc4f6b
mod_http_index/README: Linkify module names
Kim Alvefur <zash@zash.se>
parents:
1828
diff
changeset
|
6 [mod\_http\_files][doc:modules:mod_http_files] or |
|
99a025dc4f6b
mod_http_index/README: Linkify module names
Kim Alvefur <zash@zash.se>
parents:
1828
diff
changeset
|
7 [mod\_admin\_web]. If you think Prosodys default "root" web page (a |
|
99a025dc4f6b
mod_http_index/README: Linkify module names
Kim Alvefur <zash@zash.se>
parents:
1828
diff
changeset
|
8 404 error usually) is boring, this might be the module for you! :) |
| 1828 | 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 ``` |