diff options
author | hamber-dick <stevensander@web.de> | 2017-05-10 18:01:39 +0200 |
---|---|---|
committer | hamber-dick <stevensander@web.de> | 2017-05-10 18:01:39 +0200 |
commit | 57ed7f6772870b4afc833a5231894cd287def9dd (patch) | |
tree | 0158772afd0e64ffc5f518f150c8b980831e4dfd | |
parent | Merge pull request #2206 from matrix-org/rav/one_time_key_upload_change_sig (diff) | |
download | synapse-57ed7f6772870b4afc833a5231894cd287def9dd.tar.xz |
Documantation to chek synapse version
I've added some Documentation, how to get the running Version of a Synapse homeserver. This should help the HS-Owners to check whether the Upgrade was successful.
-rw-r--r-- | UPGRADE.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst index 9f044719a0..6164df8833 100644 --- a/UPGRADE.rst +++ b/UPGRADE.rst @@ -28,6 +28,15 @@ running: git pull # Update the versions of synapse's python dependencies. python synapse/python_dependencies.py | xargs -n1 pip install --upgrade + +To check whether your update was sucessfull, run: + +.. code:: bash + + # replace your.server.domain with ther domain of your synaspe homeserver + curl https://<your.server.domain>/_matrix/federation/v1/version + +So for the Matrix.org HS server the URL would be: https://matrix.org/_matrix/federation/v1/version. Upgrading to v0.15.0 |