Software /
code /
prosody-modules
Comparison
mod_http_muc_log/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_muc_log/README.wiki@29f3d6b7ad16 |
child | 1821:79b9bd84b91c |
comparison
equal
deleted
inserted
replaced
1802:0ab737feada6 | 1803:4d73a1a6ba68 |
---|---|
1 --- | |
2 labels: | |
3 - 'Stage-Beta' | |
4 summary: Provides a web interface to stored chatroom logs | |
5 ... | |
6 | |
7 Introduction | |
8 ============ | |
9 | |
10 This module provides a built-in web interface to view chatroom logs | |
11 stored by [mod\_mam\_muc](mod_mam_muc.md). | |
12 | |
13 Installation | |
14 ============ | |
15 | |
16 Just copy the folder muc\_log\_http as it is, into the modules folder of | |
17 your Prosody installation. | |
18 | |
19 Configuration Details | |
20 ===================== | |
21 | |
22 You need to add muc\_log\_http to your global modules\_enabled, and the | |
23 configuration options similarly must be put into your global | |
24 (server-wide) options section: | |
25 | |
26 Component "conference.example.com" "muc" | |
27 modules_enabled = { | |
28 ..... | |
29 "mam_muc"; | |
30 "http_muc_log"; | |
31 ..... | |
32 } | |
33 storage = { | |
34 muc_log = "sql2"; -- for example | |
35 } | |
36 | |
37 The web interface would then be reachable at the address: | |
38 | |
39 http://conference.example.com:5280/muc_log/ | |
40 | |
41 See [the page about Prosodys HTTP server](http://prosody.im/doc/http) | |
42 for info about the address. | |
43 | |
44 Compatibility | |
45 ============= | |
46 | |
47 Requires Prosody 0.10 or above and a storage backend with support for | |
48 stanza archives. |