diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-03 09:46:39 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-03 09:46:39 +0100 |
commit | ddc16d8642b92972b9bfb7d47d2a0f415fd326bf (patch) | |
tree | 5a29e291a75dd1b33299b2269850dc9e16ac6fca /UPGRADE.rst | |
parent | Add ban support: /rooms/$roomid/ban with { user_id : foo } (diff) | |
parent | Add database upgrade script (diff) | |
download | synapse-ddc16d8642b92972b9bfb7d47d2a0f415fd326bf.tar.xz |
Merge branch 'master' into develop
Diffstat (limited to 'UPGRADE.rst')
-rw-r--r-- | UPGRADE.rst | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst index 2e75d77bca..99d58ab64f 100644 --- a/UPGRADE.rst +++ b/UPGRADE.rst @@ -1,3 +1,34 @@ +Upgrading to v0.2.0 +=================== + +To upgrade the database schema, run:: + + ./database-prepare-for-0.2.0.sh "<database>.db" + + +The home server now requires setting up of SSL config before it can run. To +automatically generate default config use:: + + $ python synapse/app/homeserver.py \ + --server-name machine.my.domain.name \ + --bind-port 8448 \ + --config-path homeserver.config \ + --generate-config + +This config can be edited if desired, for example to specify a different SSL +certificate to use. Once done you can run the home server using:: + + $ python synapse/app/homeserver.py --config-path homeserver.config + +See the README.rst for more information. + +Also note that some config options have been renamed, including: + +- "host" to "server-name" +- "database" to "database-path" +- "port" to "bind-port" and "unsecure-port" + + Upgrading to v0.0.1 =================== |