comparison mod_component_client/README.md @ 5975:fe081789f7b5

All community modules: Unify file extention of Markdown files to .md
author Menel <menel@snikket.de>
date Tue, 22 Oct 2024 10:26:01 +0200
parents mod_component_client/README.markdown@35ae59a8196d
children
comparison
equal deleted inserted replaced
5974:5a65a632d5b9 5975:fe081789f7b5
1 Introduction
2 ============
3
4 This module turns Prosody hosts into components of other XMPP servers.
5
6 Configuration
7 =============
8
9 Example configuration:
10
11 ``` {.lua}
12 VirtualHost "component.example.com"
13 modules_enabled = { "component_client" }
14 component_client = {
15 host = "localhost";
16 port = 5347;
17 secret = "hunter2";
18 }
19 ```