ChatMatrix: Difference between revisions
From FlowerHouseWiki
Line 37: | Line 37: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== Configuration === | |||
<p>Create random key and save it</p> | <p>Create random key and save it</p> | ||
<syntaxhighlight lang="console"> | <syntaxhighlight lang="console"> | ||
Line 50: | Line 51: | ||
<syntaxhighlight lang="console"> | <syntaxhighlight lang="console"> | ||
</syntaxhighlight> | |||
=== Add User === | |||
<syntaxhighlight lang="console"> | |||
register_new_matrix_user -c /etc/matrix-synapse/homeserver.yaml http://localhost:8008 | |||
</syntaxhighlight> | </syntaxhighlight> | ||
== Install Bridges == | == Install Bridges == | ||
=== WhatsApp === | === WhatsApp === |
Revision as of 17:52, 15 July 2022
IP: | 192.168.88.19 |
---|---|
MAC: | BE:B1:89:38:28:44 |
Domain: | chat.flowerhouse.at |
OS: | Debian Bullseye |
---|---|
RAM: | 4096MB |
Cores: | 2 |
Privileged: | No |
The ChatMatrix-LXC is reachable under 192.168.88.19
which is located in the ServerVLAN.
The subdomain is chat.flowerhouse.at which is handled by the ReverseProxy.
Basic Setup
Installation
Install required packages
apt install -y lsb-release wget apt-transport-https
Add repository
wget -O /usr/share/keyrings/matrix-org-archive-keyring.gpg https://packages.matrix.org/debian/matrix-org-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/matrix-org-archive-keyring.gpg] https://packages.matrix.org/debian/ $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/matrix-org.list
apt update
Install matrix-synapse
apt install matrix-synapse-py3
Check status
systemctl status matrix-synapse
Configuration
Create random key and save it
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1
Edit matrix-synapse configuration file
nano /etc/matrix-synapse/homeserver.yaml
Add User
register_new_matrix_user -c /etc/matrix-synapse/homeserver.yaml http://localhost:8008