3.6 KiB
Synapse for YunoHost
Yunohost chattroom with matrix : https://riot.im/app/#/room/#yunohost:matrix.org
Setup
Install for ARM arch (or slow arch)
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
After that you can install it without problem.
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.
Package update package
sudo yunohost app upgrade synapse -u https://github.com/YunoHost-Apps/synapse_ynh
Web client
If you want a web client you can also install riot with this package : https://github.com/YunoHost-Apps/riot_ynh . But
Access by federation
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.
Important Security Note
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.
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
License
Synapse is published under the Apache License : https://github.com/matrix-org/synapse/blob/master/LICENSE
To do
- Doc (issue about domain)
- Test arm
- Riot doc
- Test production
Todo for official App
- Improve documentation