]> git.mxchange.org Git - friendica.git/blob - doc/install-ejabberd.md
Documentation: Configure bosh
[friendica.git] / doc / install-ejabberd.md
1 Install an ejabberd with synchronized credentials
2 =================================================
3
4 * [Home](help)
5
6 Installation
7 ------------
8
9 - Change it's owner to whichever user is running the server, ie. ejabberd
10
11         $ chown ejabberd:ejabberd /path/to/friendica/include/auth_ejabberd.php
12
13 - Change the access mode so it is readable only to the user ejabberd and has exec
14
15         $ chmod 700 /path/to/friendica/include/auth_ejabberd.php
16
17 - Edit your ejabberd.cfg file, comment out your auth_method and add:
18
19         {auth_method, external}.
20         {extauth_program, "/path/to/friendica/include/auth_ejabberd.php"}.
21
22 - Disable the module "mod_register" and disable the registration:
23
24         {access, register, [{deny, all}]}.
25
26 - Enable BOSH:
27   - Enable the module "mod_http_bind"
28   - Edit this line:
29
30         {5280, ejabberd_http,    [captcha, http_poll, http_bind]}
31
32   - In your apache configuration for your site add this line:
33
34         ProxyPass /http-bind http://127.0.0.1:5280/http-bind retry=0
35
36 - Restart your ejabberd service, you should be able to login with your friendica credentials
37
38 Other hints
39 -----------
40 - if a user has a space or a @ in the nickname, the user has to replace these characters:
41   - " " (space) is replaced with "%20"
42   - "@" is replaced with "(a)"
43