Software / code / prosody-modules
Comparison
mod_http_dir_listing/README.markdown @ 1803:4d73a1a6ba68
Convert all wiki pages to Markdown
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 28 Aug 2015 18:03:58 +0200 |
| parent | 1782:mod_http_dir_listing/README.wiki@29f3d6b7ad16 |
| child | 1820:8de50be756e5 |
comparison
equal
deleted
inserted
replaced
| 1802:0ab737feada6 | 1803:4d73a1a6ba68 |
|---|---|
| 1 --- | |
| 2 labels: | |
| 3 summary: HTTP directory listing | |
| 4 ... | |
| 5 | |
| 6 Introduction | |
| 7 ============ | |
| 8 | |
| 9 This module generates directory listings when invoked by | |
| 10 `mod_http_files`. See [documentation on | |
| 11 `mod\_http\_files`](http://prosody.im/doc/modules/mod_http_files). | |
| 12 | |
| 13 Configuration | |
| 14 ============= | |
| 15 | |
| 16 The module itself doesn't have any configuration of its own, just enable | |
| 17 the it along with `mod_http_files`. | |
| 18 | |
| 19 modules_enabled = { | |
| 20 ... | |
| 21 | |
| 22 "http_files"; | |
| 23 "http_dir_listing"; | |
| 24 } | |
| 25 | |
| 26 http_dir_listing = true; | |
| 27 | |
| 28 The layout, CSS and icons in the `resources/` directory can be | |
| 29 customized or replaced. All resources are cached in memory when the | |
| 30 module is loaded and the images are inlined in the CSS. | |
| 31 | |
| 32 Compatibility | |
| 33 ============= | |
| 34 | |
| 35 ------- -------------- | |
| 36 trunk Works | |
| 37 0.9 Works | |
| 38 0.8 Doesn't work | |
| 39 ------- -------------- |