diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-02 16:57:10 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-02 16:57:10 +0100 |
commit | e166e29e872d8f31a64ab9da7686c09021b47767 (patch) | |
tree | 4fa797f10414b902a512008ded935c072f2ba66f /UPGRADE.rst | |
parent | Update default endpoint port to match the default ports in the config (diff) | |
download | synapse-e166e29e872d8f31a64ab9da7686c09021b47767.tar.xz |
Bump version and changelog
Diffstat (limited to 'UPGRADE.rst')
-rw-r--r-- | UPGRADE.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst index 2e75d77bca..81624d5cdb 100644 --- a/UPGRADE.rst +++ b/UPGRADE.rst @@ -1,3 +1,29 @@ +Upgrading to v0.2.0 +=================== + +To upgrade the database schema, run:: + + ./database-prepare-for-0.2.0.sh "<database>.db" + + +The home server npw requires setting up of SSL config before it can run. To +automatically generate some default config that can be edited use:: + + $ python synapse/app/homeserver.py \ + --server-name machine.my.domain.name \ + --bind-port 8448 \ + --config-path homeserver.config \ + --generate-config + +After editing the config, 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 many config options have been renamed. + + Upgrading to v0.0.1 =================== |