Move examples out of the cmd directory

They are now in _examples dir.
Fix #26
This commit is contained in:
Mickael Remond
2019-06-08 11:34:09 +02:00
parent b7461ae97f
commit d4a8616da2
9 changed files with 16 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
# xmpp_component
This component will connect to ejabberd and act as a subdomain "service" of your primary XMPP domain
(in that case localhost).
To be able to connect this component, you need to add a listener to your XMPP server.
Here is an example ejabberd configuration for that component listener:
```yaml
listen:
...
-
port: 8888
module: ejabberd_service
password: "mypass"
```
ejabberd will listen for a component (service) on port 8888 and allows it to connect using the
secret "mypass".