Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Compiled source #
###################
*.com
*.class
*.beam
*.dll
*.exe
*.o
Expand Down
6 changes: 3 additions & 3 deletions Emakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{'src/mod_websocket', [{outdir, "ebin"},{i,"/usr/lib/ejabberd/include"},{i,"/usr/lib/ejabberd/include/web","src"}]}.
{'src/ejabberd_xmpp_websocket', [{outdir, "ebin"},{i,"/usr/lib/ejabberd/include"},{i,"/usr/lib/ejabberd/include/web","src"}]}.
{'src/ejabberd_websocket', [{outdir, "ebin"},{i,"/usr/lib/ejabberd/include"},{i,"/usr/lib/ejabberd/include/web","src"}]}.
{'src/mod_websocket', [{outdir, "ebin"},{i,"/usr/lib/ejabberd/include"}]}.
{'src/ejabberd_xmpp_websocket', [{outdir, "ebin"},{i,"/usr/lib/ejabberd/include"}]}.
{'src/ejabberd_websocket', [{outdir, "ebin"},{i,"/usr/lib/ejabberd/include"}]}.
5 changes: 2 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
> This repo is not maintained and most of the code in here is probably deprecated.


# Websocket Module for Ejabberd

This is a module that adds websocket support for the [ejabberd](http://www.ejabberd.im/) XMPP server. It's a more elegant, modern and faster replacement to Bosh.
Expand All @@ -17,6 +14,8 @@ It is an implementation of the [XMPP Over Websocket Draft](http://tools.ietf.org
### Install
<code>cp ebin/*.beam /path/to/ejabberd/lib/ebin/</code>

As for ejabberd v.13.12 I have had to install p1_logger (processone/p1_logger in github) as well. It is also possible to install /lager/. I don't know what is that.

### Configure
In the listeners section add the following line:

Expand Down
Loading