Mercurial > prosody-modules
comparison mod_conversejs/README.markdown @ 2918:d2d0715f30d9
mod_conversejs/README: Expand config section
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 10 Mar 2018 00:04:47 +0100 |
parents | ed5ad4fd5bdd |
children | 0ea93da47db9 |
comparison
equal
deleted
inserted
replaced
2917:cd5e6534b813 | 2918:d2d0715f30d9 |
---|---|
15 VirtualHost that it is loaded onto. | 15 VirtualHost that it is loaded onto. |
16 | 16 |
17 Configuration | 17 Configuration |
18 ============= | 18 ============= |
19 | 19 |
20 The module itself has no configuration. It uses | 20 The module uses general Prosody options for basic configuration. It |
21 [authentication settings][doc:authentication] to determine whether to | 21 should just work after loading it. |
22 configure Converse.js to use `login` or `anonymous` mode. | |
23 | 22 |
24 It also determines the [BOSH][mod_bosh] and [WebSocket][mod_websocket] | 23 ``` {.lua} |
25 URL automatically, see their respective documentation for how to configure | 24 modules_enabled = { |
26 them. | 25 -- other modules... |
26 "conversejs"; | |
27 } | |
28 ``` | |
27 | 29 |
28 See Prosodys [HTTP configuration][doc:http] for HTTP related options. | 30 Authentication |
31 -------------- | |
32 | |
33 [Authentication settings][doc:authentication] are used determine | |
34 whether to configure Converse.js to use `login` or `anonymous` mode. | |
35 | |
36 Connection methods | |
37 ------------------ | |
38 | |
39 It also determines the [BOSH][mod_bosh] and | |
40 [WebSocket][mod_websocket] URL automatically, see their respective | |
41 documentation for how to configure them. Both connection methods are | |
42 loaded automatically. | |
43 | |
44 HTTP | |
45 ---- | |
46 | |
47 See Prosodys [HTTP configuration][doc:http] for HTTP related | |
48 options. | |
29 | 49 |
30 | 50 |
51 |