Mercurial > prosody-modules
comparison mod_http_dir_listing/README.wiki @ 1782:29f3d6b7ad16
Import wiki pages
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 24 Aug 2015 16:43:56 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1781:12ac88940fe3 | 1782:29f3d6b7ad16 |
---|---|
1 #summary HTTP directory listing | |
2 | |
3 = Introduction = | |
4 | |
5 This module generates directory listings when invoked by `mod_http_files`. | |
6 See [http://prosody.im/doc/modules/mod_http_files documentation on `mod_http_files`]. | |
7 | |
8 = Configuration = | |
9 | |
10 The module itself doesn't have any configuration of its own, just enable the it along with `mod_http_files`. | |
11 | |
12 {{{ | |
13 modules_enabled = { | |
14 ... | |
15 | |
16 "http_files"; | |
17 "http_dir_listing"; | |
18 } | |
19 | |
20 http_dir_listing = true; | |
21 }}} | |
22 | |
23 The layout, CSS and icons in the `resources/` directory can be customized | |
24 or replaced. All resources are cached in memory when the module is | |
25 loaded and the images are inlined in the CSS. | |
26 | |
27 = Compatibility = | |
28 | |
29 ||trunk||Works|| | |
30 ||0.9||Works|| | |
31 ||0.8||Doesn't work|| |