Attempt to do relative links...

This commit is contained in:
Hans van Zijst 2024-11-04 15:03:22 +01:00
parent 6f8b889aad
commit 1e3d9f1055
Signed by untrusted user: hans
GPG key ID: 43DBCC37BFDEFD72
2 changed files with 22 additions and 0 deletions

View file

@ -47,7 +47,16 @@ apt update
apt install matrix-synapse-py3
```
This leaves a very basic configuration in `/etc/matrix-synapse/homeserver.yaml`
and two settings under `/etc/conf.d`. All other configuration items will also
be configured with yaml-files in this directory.
Configure the domain you with to use in `/etc/matrix-synapse/conf.d/server_name.yaml`.
What you configure here will also be the global part of your Matrix handles
(the part after the colon).
You now have a standard Matrix server that uses sqlite. You really don't want
to use this in production, so probably want to replace this with PostgreSQL.
Configuration is documented under `synapse`, "monolithic"

13
synapse/README.md Normal file
View file

@ -0,0 +1,13 @@
---
gitea: none
include_toc: true
---
# Installation and configuration of Synapse
There are two different ways to install Synapse, documented here:
* [Monolithic](monolithic)
* [Workers](workers)