matrix/synapse : maj 1.54.0

This commit is contained in:
Gitouche 2022-03-09 18:51:52 +01:00
parent 41ccaf5ab5
commit 0aaf0560ad
2 changed files with 1 additions and 21 deletions

View File

@ -1,28 +1,8 @@
à faire en root juste après le 05_freshinstall.sh
``` bash
vim /home/podman-matrix/.local/share/containers/storage/volumes/matrixdotorg_synapse-data/_data/homeserver.yaml
< public_baseurl: https://qlf-matrix.garbaye.fr
< enable_registration: false
< database:
< name: psycopg2
< user: synapse
< password: mysecretpass
< database: synapse
< host: synapse-db
< port: 5432
< cp_min: 5
< cp_max: 10
```
Créer un utilisateur après le ./30_start.sh
``` bash
podman exec -ti synapse register_new_matrix_user -c /data/homeserver.yaml http://localhost:8008
```
Reste à faire:
- gérer les UID/GID et comptes utilisés dans les containers ?
- Password policy ?
- Fédération+redis l 2831
- Mettre en place l'enregistrement srv : `_matrix._tcp 86400 IN SRV 5 5 443 matrix` ou le /.well-known/matrix/server (cf https://github.com/matrix-org/synapse/blob/master/docs/delegate.md)

View File

@ -4,7 +4,7 @@ pod_name='podman-matrix'
service_name="pod-${pod_name}.service"
#version='latest'
synapse_image="localhost/matrixdotorg/synapse"
synapse_version='v1.53.0'
synapse_version='v1.54.0'
postgres_image="docker.io/library/postgres"
postgres_version='11.14'
upstream_images="${synapse_image} ${postgres_image}"