mod_http_index/README.markdown
author Matthew Wild <mwild1@gmail.com>
Tue, 03 Oct 2017 22:37:15 +0100
changeset 2785 fe5bb7b13a59
parent 2491 99a025dc4f6b
child 3755 cb9517827d76
permissions -rw-r--r--
mod_s2s_reload_newcomponent: Fix to use imported configmanager instead of global

Introduction
============

This module produces a list of enabled HTTP "apps" exposed from Prosody
at `http://example.org:5280/`, e.g. [mod\_http\_muc\_log],
[mod\_http\_files][doc:modules:mod_http_files] or
[mod\_admin\_web]. If you think Prosodys default "root" web page (a
404 error usually) is boring, this might be the module for you! :)

Configuration
=============

Install and enable like any other module. Also see [Prosodys HTTP
documentation](https://prosody.im/doc/http).

``` {.lua}
modules_enabled = {
  -- other modules
  "http_index";
}

-- optional, defaults to a file next to the module
http_index_template = "/path/to/template.html"
```