1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/synapse_ynh.git synced 2024-09-03 20:26:38 +02:00
synapse_ynh/README.md

143 lines
5.6 KiB
Markdown
Raw Normal View History

2017-02-13 20:43:41 +01:00
Synapse for YunoHost
2017-10-13 14:57:26 +02:00
====================
2017-02-13 20:43:41 +01:00
2017-02-27 08:11:50 +01:00
Yunohost chattroom with matrix : [https://riot.im/app/#/room/#yunohost:matrix.org](https://riot.im/app/#/room/#yunohost:matrix.org)
[Yunohost project](https://yunohost.org/#/)
2017-02-13 20:43:41 +01:00
2017-12-15 22:54:09 +01:00
[![Integration level](https://dash.yunohost.org/integration/synapse.svg)](https://ci-apps.yunohost.org/jenkins/job/synapse%20%28Community%29/lastBuild/consoleFull)
2017-10-13 14:57:26 +02:00
Setup
-----
### Install for ARM arch (or slow arch)
2017-02-13 20:43:41 +01:00
2017-12-30 15:59:05 +01:00
For all slow or arm architecture it's recommended to build the dh file before the install to have quicker install.
You could built it by this cmd : `mkdir -p /etc/matrix-synapse && openssl dhparam -out /etc/matrix-synapse/dh.pem 2048 > /dev/null`
2017-02-13 20:43:41 +01:00
After that you can install it without problem.
2017-10-25 20:18:51 +02:00
The package use a prebuild python virtualenvironnement. The binary are taken from this repos : https://github.com/Josue-T/synapse_python_build
The script to build the binary is also available.
2017-10-13 14:57:26 +02:00
### Package update package
2017-02-13 20:43:41 +01:00
2017-10-13 14:57:26 +02:00
`sudo yunohost app upgrade synapse -u https://github.com/YunoHost-Apps/synapse_ynh`
2017-02-13 20:43:41 +01:00
2017-10-13 14:57:26 +02:00
### Web client
2017-02-13 20:43:41 +01:00
If you want a web client you can also install riot with this package : https://github.com/YunoHost-Apps/riot_ynh . But
2017-10-13 14:57:26 +02:00
### Access by federation
2017-02-13 20:43:41 +01:00
To be accessible by the federation you need to put this following line in the dns configuration :
```
_matrix._tcp.<yourdomain.com> <ttl> IN SRV 10 0 <port> <synapse.server.name>
```
for example
```
_matrix._tcp.example.com. 3600 IN SRV 10 0 8448 synapse.example.com.
```
2017-10-13 14:57:26 +02:00
### Important Security Note
2017-02-13 20:43:41 +01:00
We do not recommend running Riot from the same domain name as your Matrix
homeserver (synapse). The reason is the risk of XSS (cross-site-scripting)
vulnerabilities that could occur if someone caused Riot to load and render
malicious user generated content from a Matrix API which then had trusted
access to Riot (or other apps) due to sharing the same domain.
We have put some coarse mitigations into place to try to protect against this
situation, but it's still not good practice to do it in the first place. See
https://github.com/vector-im/riot-web/issues/1977 for more details.
2017-12-29 20:24:57 +01:00
Install
-------
From command line:
`sudo yunohost app install -l synapse https://github.com/YunoHost-Apps/synapse_ynh`
Upgrade
-------
From command line:
`sudo yunohost app upgrade synapse -u https://github.com/YunoHost-Apps/synapse_ynh`
Issue
-----
Any issue is welcome here : https://github.com/YunoHost-Apps/synapse_ynh/issues
Administation
-------------
**All documentation of this section is not warranted. A bad use of command could broke the app and all the data. So use theses command at your own risk.**
Before any manipulation it's recommended to do a backup by this following command :
`sudo yunohost backup create --verbose --ignore-system --apps synapse`
### Set user as admin
Actually there are no function in the client interface to set a user as admin. So it's possible to enable it manually in the database.
This following command will enable the admin access to the specified user :
```
su --command="psql matrix_synapse" postgres <<< "UPDATE users SET admin = 1 WHERE name = '@user_to_be_admin:domain.tld'"
```
### Disable backup in upgrade
To solve the issue [#30](https://github.com/YunoHost-Apps/synapse_ynh/issues/30) you can disable the upgrade in the upgrade by setting to true the key `disable_backup_before_upgrade` in the app setting. You can set it by this command :
`yunohost app setting synapse disable_backup_before_upgrade -v 1`
Multi instance support
----------------------
To give a possiblity to have multiple domain you can use synapse in multiple instance. In this case all instance will run on differents port so it's really important to use put a SRV record in your domain. You can get the port that your need to put in your SRV record by this following command :
```
yunohost app setting synapse__<instancenumber> synapse_tls_port
```
Before to install a second instance of the app it's really recommend to update all instance already installed.
Migration from old package
--------------------------
The old synapse package had some problem, the package has been reviewed in the summer 2017. The old package was made with the debian package with the synapse apt repos. The database used sqlite. To improve the performance and to have a better compatibility the new package use python virtual environment and postgresql as database. The Upgrade was made to make the migration from the old package to the new package. The part of this script is available here : https://github.com/YunoHost-Apps/synapse_ynh/blob/master/scripts/upgrade#L40-L119 .
This script try to upgrade the app without any problem but it could happen that something fail and in this case it NOT guaranteed that the restored successfully. So it's REALLY recommended to make manually a backup before this big upgrade.
To check if you use the old synapse package type this command :
`sudo yunohost app setting synapse synapse_version`
- If the command return nothing you are using the old package.
- If the command return something like 0.25.1 you are using the new package.
To do a backup before the upgrade use this command : `sudo yunohost backup create --verbose --ignore-system --apps synapse`
If anything fail while you are doing the upgrade please make an issue here : https://github.com/YunoHost-Apps/synapse_ynh/issues
2017-10-13 14:57:26 +02:00
License
-------
Synapse is published under the Apache License : https://github.com/matrix-org/synapse/blob/master/LICENSE
To do
-----
2017-02-13 20:43:41 +01:00
- helper app version
- helper systemd
- helper ynh_check_starting
2017-02-13 20:43:41 +01:00
- Doc (issue about domain)
- Test arm
- Riot doc
- Test production
2017-10-13 14:57:26 +02:00
### Todo for official App
- Improve documentation