• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.markdownH A D05-Jun-2021332 2015

mod_component_client.luaH A D05-Jun-20218 KiB259199

README.markdown

1Introduction
2============
3
4This module turns Prosody hosts into components of other XMPP servers.
5
6Configuration
7=============
8
9Example configuration:
10
11``` {.lua}
12VirtualHost "component.example.com"
13modules_enabled = { "component_client" }
14component_client = {
15    host = "localhost";
16    port = 5347;
17    secret = "hunter2";
18}
19```
20