mod_muc_webchat_url: Fix default url
[prosody-modules.git] / mod_s2s_keepalive / README.markdown
blob4da2df6a4c15bf074ece5961ceb5e467078ee51d
1 ---
2 summary: Keepalive s2s connections
3 ...
5 Introduction
6 ============
8 This module periodically sends [XEP-0199] ping requests to remote servers
9 to keep your connection alive.
11 Configuration
12 =============
14 Simply add the module to the `modules_enabled` list like any other
15 module. By default, all current s2s connections will be pinged
16 periodically. To ping only a subset of servers, list these in
17 `keepalive_servers`. The ping interval can be set using
18 `keepalive_interval`.
20 ``` lua
21 modules_enabled = {
22     ...
23     "s2s_keepalive"
26 keepalive_servers = { "conference.prosody.im"; "rooms.swift.im" }
27 keepalive_interval = "300" -- (in seconds, default is 60 )
28 ```
30 Compatibility
31 =============
33   ------- -----------------------
34   0.10    Works
35   0.9     Works
36   0.8     Works
37   ------- -----------------------