diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2022-07-20 17:39:15 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-20 17:39:15 +0000 |
| commit | bb942989ca3c53c29204d1853bfeedee34f315be (patch) | |
| tree | c360565c7b7bb5431abaf411386df3abf28db600 /content/matrix.md | |
| parent | 395fc64b62ebfbc96c847f869f094beb5dfb21bf (diff) | |
| parent | 2df3bc4297ce1696ccc5e2ccbd6adc22b067b646 (diff) | |
Merge pull request #216 from zacharytyhacz/master
Fixed Matrix Element image paths + Added note about configuration for Matrix Synapse
Diffstat (limited to 'content/matrix.md')
| -rw-r--r-- | content/matrix.md | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/content/matrix.md b/content/matrix.md index 4442cc3..893d58a 100644 --- a/content/matrix.md +++ b/content/matrix.md @@ -91,6 +91,7 @@ certbot --nginx -d matrix.example.org ## Configuration + ### Read the config file The configuration file for Matrix is in @@ -111,15 +112,31 @@ choices for creating a user, among which will be the ability to make it an admin. ```sh +cd /etc/matrix-synapse + register_new_matrix_user -c homeserver.yaml http://localhost:8008 ``` -## Using Matrix with Element +### Error Shared secret registration is not enabled + +Sometimes the default configuration is not fully setup, so you need +to add the following the keys to your `homeserver.yaml`: + +- `macaroon_secret_key` +- `registration_shared_secret` + +Make sure to restart Matrix Synapse + +```sh +systemctl restart matrix-synapse +``` + +## Using Matrix with Element There are many different [clients](https://matrix.org/clients/) that can be used on desktops or phones to chat on your Matrix server, but the most popular and most widely vetted is Element. +logo](/pix/element.svg)Element. Get Element to access your Matrix server: |
