2014-09-02 05:04:41 -04:00
|
|
|
Introduction
|
|
|
|
============
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-08-12 22:01:27 -04:00
|
|
|
Matrix is an ambitious new ecosystem for open federated Instant Messaging and
|
2014-09-02 16:14:32 -04:00
|
|
|
VoIP. The basics you need to know to get up and running are:
|
2014-08-13 10:23:06 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
- Everything in Matrix happens in a room. Rooms are distributed and do not
|
|
|
|
exist on any single server. Rooms can be located using convenience aliases
|
2015-02-13 19:16:33 -05:00
|
|
|
like ``#matrix:matrix.org`` or ``#test:localhost:8448``.
|
2014-10-02 06:00:21 -04:00
|
|
|
|
|
|
|
- Matrix user IDs look like ``@matthew:matrix.org`` (although in the future
|
|
|
|
you will normally refer to yourself and others using a 3PID: email
|
|
|
|
address, phone number, etc rather than manipulating Matrix user IDs)
|
2014-08-13 10:37:57 -04:00
|
|
|
|
|
|
|
The overall architecture is::
|
|
|
|
|
2014-09-02 12:43:43 -04:00
|
|
|
client <----> homeserver <=====================> homeserver <----> client
|
2014-09-03 20:51:01 -04:00
|
|
|
https://somewhere.org/_matrix https://elsewhere.net/_matrix
|
2014-08-13 10:23:06 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
``#matrix:matrix.org`` is the official support room for Matrix, and can be
|
|
|
|
accessed by the web client at http://matrix.org/alpha or via an IRC bridge at
|
|
|
|
irc://irc.freenode.net/matrix.
|
2014-08-22 19:50:49 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
Synapse is currently in rapid development, but as of version 0.5 we believe it
|
|
|
|
is sufficiently stable to be run as an internet-facing service for real usage!
|
2014-10-02 06:00:21 -04:00
|
|
|
|
2014-08-13 10:23:06 -04:00
|
|
|
About Matrix
|
|
|
|
============
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-08-13 22:36:03 -04:00
|
|
|
Matrix specifies a set of pragmatic RESTful HTTP JSON APIs as an open standard,
|
|
|
|
which handle:
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-10-02 06:00:21 -04:00
|
|
|
- Creating and managing fully distributed chat rooms with no
|
|
|
|
single points of control or failure
|
2014-11-17 14:42:27 -05:00
|
|
|
- Eventually-consistent cryptographically secure synchronisation of room
|
2014-10-02 06:00:21 -04:00
|
|
|
state across a global open network of federated servers and services
|
|
|
|
- Sending and receiving extensible messages in a room with (optional)
|
2014-11-17 14:42:27 -05:00
|
|
|
end-to-end encryption[1]
|
2014-10-02 06:00:21 -04:00
|
|
|
- Inviting, joining, leaving, kicking, banning room members
|
|
|
|
- Managing user accounts (registration, login, logout)
|
|
|
|
- Using 3rd Party IDs (3PIDs) such as email addresses, phone numbers,
|
|
|
|
Facebook accounts to authenticate, identify and discover users on Matrix.
|
|
|
|
- Placing 1:1 VoIP and Video calls
|
2014-08-12 14:36:36 -04:00
|
|
|
|
|
|
|
These APIs are intended to be implemented on a wide range of servers, services
|
2014-10-02 06:00:21 -04:00
|
|
|
and clients, letting developers build messaging and VoIP functionality on top
|
|
|
|
of the entirely open Matrix ecosystem rather than using closed or proprietary
|
2014-08-12 22:01:27 -04:00
|
|
|
solutions. The hope is for Matrix to act as the building blocks for a new
|
|
|
|
generation of fully open and interoperable messaging and VoIP apps for the
|
|
|
|
internet.
|
2014-08-12 14:36:36 -04:00
|
|
|
|
|
|
|
Synapse is a reference "homeserver" implementation of Matrix from the core
|
|
|
|
development team at matrix.org, written in Python/Twisted for clarity and
|
|
|
|
simplicity. It is intended to showcase the concept of Matrix and let folks see
|
|
|
|
the spec in the context of a codebase and let you run your own homeserver and
|
|
|
|
generally help bootstrap the ecosystem.
|
|
|
|
|
|
|
|
In Matrix, every user runs one or more Matrix clients, which connect through to
|
|
|
|
a Matrix homeserver which stores all their personal chat history and user
|
|
|
|
account information - much as a mail client connects through to an IMAP/SMTP
|
|
|
|
server. Just like email, you can either run your own Matrix homeserver and
|
2014-10-02 06:00:21 -04:00
|
|
|
control and own your own communications and history or use one hosted by
|
|
|
|
someone else (e.g. matrix.org) - there is no single point of control or
|
|
|
|
mandatory service provider in Matrix, unlike WhatsApp, Facebook, Hangouts, etc.
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-08-12 22:01:27 -04:00
|
|
|
Synapse ships with two basic demo Matrix clients: webclient (a basic group chat
|
|
|
|
web client demo implemented in AngularJS) and cmdclient (a basic Python
|
2014-09-19 09:19:02 -04:00
|
|
|
command line utility which lets you easily see what the JSON APIs are up to).
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
Meanwhile, iOS and Android SDKs and clients are currently in development and available from:
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-11-23 20:41:05 -05:00
|
|
|
- https://github.com/matrix-org/matrix-ios-sdk
|
|
|
|
- https://github.com/matrix-org/matrix-android-sdk
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
We'd like to invite you to join #matrix:matrix.org (via http://matrix.org/alpha), run a homeserver, take a look at the Matrix spec at
|
|
|
|
http://matrix.org/docs/spec, experiment with the APIs and the demo
|
|
|
|
clients, and report any bugs via http://matrix.org/jira.
|
2014-08-13 06:48:55 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
Thanks for using Matrix!
|
|
|
|
|
|
|
|
[1] End-to-end encryption is currently in development
|
2014-08-12 22:01:27 -04:00
|
|
|
|
|
|
|
Homeserver Installation
|
|
|
|
=======================
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
System requirements:
|
|
|
|
- POSIX-compliant system (tested on Linux & OSX)
|
|
|
|
- Python 2.7
|
|
|
|
|
2014-11-04 10:08:00 -05:00
|
|
|
Synapse is written in python but some of the libraries is uses are written in
|
|
|
|
C. So before we can install synapse itself we need a working C compiler and the
|
|
|
|
header files for python C extensions.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-17 13:52:12 -05:00
|
|
|
Installing prerequisites on Ubuntu or Debian::
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-12 10:26:50 -05:00
|
|
|
$ sudo apt-get install build-essential python2.7-dev libffi-dev \
|
2014-12-02 05:22:00 -05:00
|
|
|
python-pip python-setuptools sqlite3 \
|
2015-01-30 11:56:53 -05:00
|
|
|
libssl-dev python-virtualenv libjpeg-dev
|
2015-02-07 00:28:21 -05:00
|
|
|
|
|
|
|
Installing prerequisites on ArchLinux::
|
|
|
|
|
|
|
|
$ sudo pacman -S base-devel python2 python-pip \
|
|
|
|
python-setuptools python-virtualenv sqlite3
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-10-02 06:00:21 -04:00
|
|
|
Installing prerequisites on Mac OS X::
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
$ xcode-select --install
|
2015-01-31 00:09:59 -05:00
|
|
|
$ sudo pip install virtualenv
|
2014-11-17 13:52:12 -05:00
|
|
|
|
|
|
|
To install the synapse homeserver run::
|
|
|
|
|
2015-01-31 00:09:59 -05:00
|
|
|
$ virtualenv ~/.synapse
|
2015-01-30 11:56:53 -05:00
|
|
|
$ source ~/.synapse/bin/activate
|
|
|
|
$ pip install --process-dependency-links https://github.com/matrix-org/synapse/tarball/master
|
2014-11-17 13:52:12 -05:00
|
|
|
|
2015-01-30 11:56:53 -05:00
|
|
|
This installs synapse, along with the libraries it uses, into a virtual
|
2015-01-31 00:09:59 -05:00
|
|
|
environment under ``~/.synapse``.
|
2015-01-08 15:36:34 -05:00
|
|
|
|
2015-01-30 12:11:29 -05:00
|
|
|
To set up your homeserver, run (in your virtualenv, as before)::
|
|
|
|
|
|
|
|
$ python -m synapse.app.homeserver \
|
|
|
|
--server-name machine.my.domain.name \
|
2015-01-30 12:37:37 -05:00
|
|
|
--config-path homeserver.yaml \
|
2015-01-30 12:11:29 -05:00
|
|
|
--generate-config
|
|
|
|
|
|
|
|
Substituting your host and domain name as appropriate.
|
|
|
|
|
2014-12-24 14:45:28 -05:00
|
|
|
For reliable VoIP calls to be routed via this homeserver, you MUST configure
|
|
|
|
a TURN server. See docs/turn-howto.rst for details.
|
|
|
|
|
2014-11-17 14:11:35 -05:00
|
|
|
Troubleshooting Installation
|
|
|
|
----------------------------
|
2014-11-17 13:52:12 -05:00
|
|
|
|
|
|
|
Synapse requires pip 1.7 or later, so if your OS provides too old a version and
|
2014-11-17 14:11:35 -05:00
|
|
|
you get errors about ``error: no such option: --process-dependency-links`` you
|
|
|
|
may need to manually upgrade it::
|
2014-11-17 13:52:12 -05:00
|
|
|
|
|
|
|
$ sudo pip install --upgrade pip
|
2015-01-30 12:00:32 -05:00
|
|
|
|
2014-11-17 13:52:12 -05:00
|
|
|
If pip crashes mid-installation for reason (e.g. lost terminal), pip may
|
|
|
|
refuse to run until you remove the temporary installation directory it
|
|
|
|
created. To reset the installation::
|
|
|
|
|
|
|
|
$ rm -rf /tmp/pip_install_matrix
|
2015-01-30 12:00:32 -05:00
|
|
|
|
2014-11-17 14:44:53 -05:00
|
|
|
pip seems to leak *lots* of memory during installation. For instance, a Linux
|
|
|
|
host with 512MB of RAM may run out of memory whilst installing Twisted. If this
|
|
|
|
happens, you will have to individually install the dependencies which are
|
2014-11-23 20:41:05 -05:00
|
|
|
failing, e.g.::
|
2014-11-17 14:44:53 -05:00
|
|
|
|
2015-01-30 12:00:32 -05:00
|
|
|
$ pip install twisted
|
2014-11-17 13:52:12 -05:00
|
|
|
|
2014-11-30 18:21:47 -05:00
|
|
|
On OSX, if you encounter clang: error: unknown argument: '-mno-fused-madd' you
|
|
|
|
will need to export CFLAGS=-Qunused-arguments.
|
|
|
|
|
2015-02-07 00:28:21 -05:00
|
|
|
ArchLinux
|
2015-02-07 15:24:46 -05:00
|
|
|
---------
|
|
|
|
|
|
|
|
Installation on ArchLinux may encounter a few hiccups as Arch defaults to
|
|
|
|
python 3, but synapse currently assumes python 2.7 by default.
|
2015-02-07 00:28:21 -05:00
|
|
|
|
2015-02-07 15:24:46 -05:00
|
|
|
pip may be outdated (6.0.7-1 and needs to be upgraded to 6.0.8-1 )::
|
2015-02-07 00:28:21 -05:00
|
|
|
|
2015-02-07 15:24:46 -05:00
|
|
|
$ sudo pip2.7 install --upgrade pip
|
2015-02-07 00:28:21 -05:00
|
|
|
|
2015-02-07 15:24:46 -05:00
|
|
|
You also may need to explicitly specify python 2.7 again during the install
|
|
|
|
request::
|
|
|
|
|
|
|
|
$ pip2.7 install --process-dependency-links \
|
|
|
|
https://github.com/matrix-org/synapse/tarball/master
|
2015-02-07 00:28:21 -05:00
|
|
|
|
2015-02-07 15:24:46 -05:00
|
|
|
If you encounter an error with lib bcrypt causing an Wrong ELF Class:
|
|
|
|
ELFCLASS32 (x64 Systems), you may need to reinstall py-bcrypt to correctly
|
|
|
|
compile it under the right architecture. (This should not be needed if
|
|
|
|
installing under virtualenv)::
|
|
|
|
|
|
|
|
$ sudo pip2.7 uninstall py-bcrypt
|
|
|
|
$ sudo pip2.7 install py-bcrypt
|
2015-02-07 00:28:21 -05:00
|
|
|
|
2015-02-07 15:24:46 -05:00
|
|
|
During setup of homeserver you need to call python2.7 directly again::
|
|
|
|
|
|
|
|
$ python2.7 -m synapse.app.homeserver \
|
2015-02-07 00:28:21 -05:00
|
|
|
--server-name machine.my.domain.name \
|
|
|
|
--config-path homeserver.yaml \
|
|
|
|
--generate-config
|
|
|
|
|
2015-02-07 15:24:46 -05:00
|
|
|
...substituting your host and domain name as appropriate.
|
2015-02-07 00:28:21 -05:00
|
|
|
|
2014-12-18 09:16:31 -05:00
|
|
|
Windows Install
|
|
|
|
---------------
|
|
|
|
Synapse can be installed on Cygwin. It requires the following Cygwin packages:
|
|
|
|
|
|
|
|
- gcc
|
|
|
|
- git
|
|
|
|
- libffi-devel
|
|
|
|
- openssl (and openssl-devel, python-openssl)
|
|
|
|
- python
|
|
|
|
- python-setuptools
|
2015-01-30 12:00:32 -05:00
|
|
|
|
2014-12-18 09:44:48 -05:00
|
|
|
The content repository requires additional packages and will be unable to process
|
|
|
|
uploads without them:
|
|
|
|
- libjpeg8
|
|
|
|
- libjpeg8-devel
|
|
|
|
- zlib
|
|
|
|
If you choose to install Synapse without these packages, you will need to reinstall
|
|
|
|
``pillow`` for changes to be applied, e.g. ``pip uninstall pillow`` ``pip install
|
|
|
|
pillow --user``
|
2014-12-18 09:16:31 -05:00
|
|
|
|
|
|
|
Troubleshooting:
|
|
|
|
|
|
|
|
- You may need to upgrade ``setuptools`` to get this to work correctly:
|
|
|
|
``pip install setuptools --upgrade``.
|
|
|
|
- You may encounter errors indicating that ``ffi.h`` is missing, even with
|
|
|
|
``libffi-devel`` installed. If you do, copy the ``.h`` files:
|
|
|
|
``cp /usr/lib/libffi-3.0.13/include/*.h /usr/include``
|
|
|
|
- You may need to install libsodium from source in order to install PyNacl. If
|
|
|
|
you do, you may need to create a symlink to ``libsodium.a`` so ``ld`` can find
|
|
|
|
it: ``ln -s /usr/local/lib/libsodium.a /usr/lib/libsodium.a``
|
|
|
|
|
2014-11-17 13:52:12 -05:00
|
|
|
Running Your Homeserver
|
|
|
|
=======================
|
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
To actually run your new homeserver, pick a working directory for Synapse to run
|
|
|
|
(e.g. ``~/.synapse``), and::
|
2014-11-17 13:52:12 -05:00
|
|
|
|
|
|
|
$ cd ~/.synapse
|
2015-01-30 12:00:32 -05:00
|
|
|
$ source ./bin/activate
|
2015-01-30 11:56:53 -05:00
|
|
|
$ synctl start
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-17 14:11:35 -05:00
|
|
|
Troubleshooting Running
|
|
|
|
-----------------------
|
2014-11-17 13:52:12 -05:00
|
|
|
|
2014-11-17 14:11:35 -05:00
|
|
|
If synapse fails with ``missing "sodium.h"`` crypto errors, you may need
|
2014-11-17 13:52:12 -05:00
|
|
|
to manually upgrade PyNaCL, as synapse uses NaCl (http://nacl.cr.yp.to/) for
|
|
|
|
encryption and digital signatures.
|
2014-11-12 10:26:50 -05:00
|
|
|
Unfortunately PyNACL currently has a few issues
|
2014-11-04 10:08:00 -05:00
|
|
|
(https://github.com/pyca/pynacl/issues/53) and
|
|
|
|
(https://github.com/pyca/pynacl/issues/79) that mean it may not install
|
2014-11-12 10:26:50 -05:00
|
|
|
correctly, causing all tests to fail with errors about missing "sodium.h". To
|
|
|
|
fix try re-installing from PyPI or directly from
|
|
|
|
(https://github.com/pyca/pynacl)::
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-04 10:08:00 -05:00
|
|
|
$ # Install from PyPI
|
|
|
|
$ pip install --user --upgrade --force pynacl
|
|
|
|
$ # Install from github
|
|
|
|
$ pip install --user https://github.com/pyca/pynacl/tarball/master
|
2014-10-02 06:00:21 -04:00
|
|
|
|
2015-02-07 00:28:21 -05:00
|
|
|
ArchLinux
|
|
|
|
---------
|
|
|
|
|
2015-02-07 15:24:46 -05:00
|
|
|
If running `$ synctl start` fails wit 'returned non-zero exit status 1', you will need to explicitly call Python2.7 - either running as::
|
2015-02-07 00:28:21 -05:00
|
|
|
|
2015-02-07 15:24:46 -05:00
|
|
|
$ python2.7 -m synapse.app.homeserver --daemonize -c homeserver.yaml --pid-file homeserver.pid
|
|
|
|
|
|
|
|
...or by editing synctl with the correct python executable.
|
2014-11-12 10:26:50 -05:00
|
|
|
|
2014-11-04 10:08:00 -05:00
|
|
|
Homeserver Development
|
|
|
|
======================
|
|
|
|
|
2014-11-12 10:26:50 -05:00
|
|
|
To check out a homeserver for development, clone the git repo into a working
|
2014-11-23 20:41:05 -05:00
|
|
|
directory of your choice::
|
2014-11-12 10:26:50 -05:00
|
|
|
|
|
|
|
$ git clone https://github.com/matrix-org/synapse.git
|
|
|
|
$ cd synapse
|
|
|
|
|
2014-11-04 10:08:00 -05:00
|
|
|
The homeserver has a number of external dependencies, that are easiest
|
2015-01-30 11:56:53 -05:00
|
|
|
to install using pip and a virtualenv::
|
2014-11-04 10:08:00 -05:00
|
|
|
|
2015-01-30 11:56:53 -05:00
|
|
|
$ virtualenv env
|
2015-01-30 12:00:32 -05:00
|
|
|
$ source env/bin/activate
|
2015-02-02 12:31:58 -05:00
|
|
|
$ python synapse/python_dependencies.py | xargs -n1 pip install
|
2015-01-30 11:56:53 -05:00
|
|
|
$ pip install setuptools_trial mock
|
2014-09-03 20:51:01 -04:00
|
|
|
|
2015-01-30 11:56:53 -05:00
|
|
|
This will run a process of downloading and installing all the needed
|
|
|
|
dependencies into a virtual env.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
Once this is done, you may wish to run the homeserver's unit tests, to
|
|
|
|
check that everything is installed as it should be::
|
|
|
|
|
|
|
|
$ python setup.py test
|
|
|
|
|
|
|
|
This should end with a 'PASSED' result::
|
|
|
|
|
|
|
|
Ran 143 tests in 0.601s
|
|
|
|
|
|
|
|
PASSED (successes=143)
|
|
|
|
|
|
|
|
|
2014-08-22 10:23:02 -04:00
|
|
|
Upgrading an existing homeserver
|
|
|
|
================================
|
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
IMPORTANT: Before upgrading an existing homeserver to a new version, please
|
|
|
|
refer to UPGRADE.rst for any additional instructions.
|
2014-10-02 06:00:21 -04:00
|
|
|
|
2014-12-24 11:56:20 -05:00
|
|
|
Otherwise, simply re-install the new codebase over the current one - e.g.
|
2015-01-30 12:00:32 -05:00
|
|
|
by ``pip install --process-dependency-links
|
2014-12-24 11:56:20 -05:00
|
|
|
https://github.com/matrix-org/synapse/tarball/master``
|
|
|
|
if using pip, or by ``git pull`` if running off a git working copy.
|
|
|
|
|
2014-08-22 10:23:02 -04:00
|
|
|
|
2014-08-13 10:23:06 -04:00
|
|
|
Setting up Federation
|
|
|
|
=====================
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-12 14:36:36 -04:00
|
|
|
In order for other homeservers to send messages to your server, it will need to
|
|
|
|
be publicly visible on the internet, and they will need to know its host name.
|
2014-08-13 16:19:21 -04:00
|
|
|
You have two choices here, which will influence the form of your Matrix user
|
2014-08-12 14:36:36 -04:00
|
|
|
IDs:
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-10-02 06:00:21 -04:00
|
|
|
1) Use the machine's own hostname as available on public DNS in the form of
|
|
|
|
its A or AAAA records. This is easier to set up initially, perhaps for
|
|
|
|
testing, but lacks the flexibility of SRV.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-10-02 06:00:21 -04:00
|
|
|
2) Set up a SRV record for your domain name. This requires you create a SRV
|
|
|
|
record in DNS, but gives the flexibility to run the server on your own
|
|
|
|
choice of TCP port, on a machine that might not be the same name as the
|
|
|
|
domain name.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
For the first form, simply pass the required hostname (of the machine) as the
|
2014-11-18 14:22:41 -05:00
|
|
|
--server-name parameter::
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-04 10:08:00 -05:00
|
|
|
$ python -m synapse.app.homeserver \
|
2014-09-01 15:21:43 -04:00
|
|
|
--server-name machine.my.domain.name \
|
2015-01-30 12:37:37 -05:00
|
|
|
--config-path homeserver.yaml \
|
2014-09-01 15:21:43 -04:00
|
|
|
--generate-config
|
2015-01-30 12:37:37 -05:00
|
|
|
$ python -m synapse.app.homeserver --config-path homeserver.yaml
|
2014-10-02 06:00:21 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
Alternatively, you can run ``synctl start`` to guide you through the process.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
For the second form, first create your SRV record and publish it in DNS. This
|
|
|
|
needs to be named _matrix._tcp.YOURDOMAIN, and point at at least one hostname
|
2014-08-12 14:36:36 -04:00
|
|
|
and port where the server is running. (At the current time synapse does not
|
|
|
|
support clustering multiple servers into a single logical homeserver). The DNS
|
|
|
|
record would then look something like::
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-18 14:22:41 -05:00
|
|
|
$ dig -t srv _matrix._tcp.machine.my.domaine.name
|
2014-08-12 10:10:52 -04:00
|
|
|
_matrix._tcp IN SRV 10 0 8448 machine.my.domain.name.
|
|
|
|
|
2014-11-18 14:22:41 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
At this point, you should then run the homeserver with the hostname of this
|
|
|
|
SRV record, as that is the name other machines will expect it to have::
|
|
|
|
|
2014-11-04 10:08:00 -05:00
|
|
|
$ python -m synapse.app.homeserver \
|
2014-09-01 15:21:43 -04:00
|
|
|
--server-name YOURDOMAIN \
|
|
|
|
--bind-port 8448 \
|
2015-01-30 12:37:37 -05:00
|
|
|
--config-path homeserver.yaml \
|
2014-09-01 15:21:43 -04:00
|
|
|
--generate-config
|
2015-01-30 12:37:37 -05:00
|
|
|
$ python -m synapse.app.homeserver --config-path homeserver.yaml
|
2014-09-01 15:21:43 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
You may additionally want to pass one or more "-v" options, in order to
|
|
|
|
increase the verbosity of logging output; at least for initial testing.
|
|
|
|
|
2014-08-12 14:36:36 -04:00
|
|
|
For the initial alpha release, the homeserver is not speaking TLS for
|
|
|
|
either client-server or server-server traffic for ease of debugging. We have
|
|
|
|
also not spent any time yet getting the homeserver to run behind loadbalancers.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-12 22:01:27 -04:00
|
|
|
Running a Demo Federation of Homeservers
|
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
If you want to get up and running quickly with a trio of homeservers in a
|
|
|
|
private federation (``localhost:8080``, ``localhost:8081`` and
|
2014-08-14 12:44:21 -04:00
|
|
|
``localhost:8082``) which you can then access through the webclient running at
|
|
|
|
http://localhost:8080. Simply run::
|
2014-08-12 22:01:27 -04:00
|
|
|
|
|
|
|
$ demo/start.sh
|
2014-11-17 14:42:27 -05:00
|
|
|
|
|
|
|
This is mainly useful just for development purposes.
|
2014-08-12 14:36:36 -04:00
|
|
|
|
|
|
|
Running The Demo Web Client
|
|
|
|
===========================
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-10-02 09:09:27 -04:00
|
|
|
The homeserver runs a web client by default at https://localhost:8448/.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
If this is the first time you have used the client from that browser (it uses
|
|
|
|
HTML5 local storage to remember its config), you will need to log in to your
|
|
|
|
account. If you don't yet have an account, because you've just started the
|
|
|
|
homeserver for the first time, then you'll need to register one.
|
|
|
|
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
Registering A New Account
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
Your new user name will be formed partly from the hostname your server is
|
|
|
|
running as, and partly from a localpart you specify when you create the
|
|
|
|
account. Your name will take the form of::
|
|
|
|
|
|
|
|
@localpart:my.domain.here
|
|
|
|
(pronounced "at localpart on my dot domain dot here")
|
|
|
|
|
|
|
|
Specify your desired localpart in the topmost box of the "Register for an
|
2014-08-12 14:36:36 -04:00
|
|
|
account" form, and click the "Register" button. Hostnames can contain ports if
|
2014-10-02 09:09:27 -04:00
|
|
|
required due to lack of SRV records (e.g. @matthew:localhost:8448 on an
|
2014-10-02 06:00:21 -04:00
|
|
|
internal synapse sandbox running on localhost)
|
2014-08-12 14:36:36 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
Logging In To An Existing Account
|
|
|
|
---------------------------------
|
|
|
|
|
2014-08-13 16:19:21 -04:00
|
|
|
Just enter the ``@localpart:my.domain.here`` Matrix user ID and password into
|
|
|
|
the form and click the Login button.
|
2014-08-12 22:01:27 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-12 22:01:27 -04:00
|
|
|
Identity Servers
|
|
|
|
================
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-12 22:01:27 -04:00
|
|
|
The job of authenticating 3PIDs and tracking which 3PIDs are associated with a
|
2014-08-13 16:19:21 -04:00
|
|
|
given Matrix user is very security-sensitive, as there is obvious risk of spam
|
2014-10-02 06:00:21 -04:00
|
|
|
if it is too easy to sign up for Matrix accounts or harvest 3PID data.
|
|
|
|
Meanwhile the job of publishing the end-to-end encryption public keys for
|
|
|
|
Matrix users is also very security-sensitive for similar reasons.
|
2014-08-12 22:01:27 -04:00
|
|
|
|
|
|
|
Therefore the role of managing trusted identity in the Matrix ecosystem is
|
|
|
|
farmed out to a cluster of known trusted ecosystem partners, who run 'Matrix
|
|
|
|
Identity Servers' such as ``sydent``, whose role is purely to authenticate and
|
|
|
|
track 3PID logins and publish end-user public keys.
|
|
|
|
|
|
|
|
It's currently early days for identity servers as Matrix is not yet using 3PIDs
|
|
|
|
as the primary means of identity and E2E encryption is not complete. As such,
|
2014-10-02 06:00:21 -04:00
|
|
|
we are running a single identity server (http://matrix.org:8090) at the current
|
2014-09-19 09:19:02 -04:00
|
|
|
time.
|
2014-08-12 22:01:27 -04:00
|
|
|
|
|
|
|
|
2014-08-13 10:23:06 -04:00
|
|
|
Where's the spec?!
|
|
|
|
==================
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
The source of the matrix spec lives at https://github.com/matrix-org/matrix-doc.
|
|
|
|
A recent HTML snapshot of this lives at http://matrix.org/docs/spec
|
2014-08-12 22:01:27 -04:00
|
|
|
|
|
|
|
|
|
|
|
Building Internal API Documentation
|
|
|
|
===================================
|
|
|
|
|
2014-11-17 14:42:27 -05:00
|
|
|
Before building internal API documentation install sphinx and
|
2014-08-12 22:01:27 -04:00
|
|
|
sphinxcontrib-napoleon::
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
$ pip install sphinx
|
|
|
|
$ pip install sphinxcontrib-napoleon
|
|
|
|
|
2014-08-12 22:01:27 -04:00
|
|
|
Building internal API documentation::
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
$ python setup.py build_sphinx
|
2014-08-13 09:40:47 -04:00
|
|
|
|