Skip to content

Wakoma/matrix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Before beginning cp .envrc.tpl .envrc, edit all empty values accordingly (for passwords you can generate automated ones with pwgen -s 64 1), and preferably use direnv to reliably and automatically source the project's environment variables.

The rest of the instructions assume you have ansible and packer installed.

Build base AMI

  1. If not done before, ansible-galaxy install -r requirements.yml

  2. cd packer

  3. packer build matrix-base.json

Deploy base instance

  1. We do this manually using Hetzner web interface

Set up DNS

e.g. A-records mapping matrix domain to ip of instance, the rest can be CNAME mapping to matrix domain. Remember to whitelist IP of instance for Namecheap API access for example.

Deploy Traefik with Netdata (Docker-compose from the instance)

  1. ssh ubuntu@<Instance-IP>

  2. ssh-keygen - Proceed through with defaults

  3. cat ~/.ssh/id_rsa.pub

  4. Create a deploy key on this git repo with the contents of previous command (do not allow write access)

  5. git clone [email protected]:Wakoma/matrix.git (git checkout to correct branch)

  6. cd /home/ubuntu/matrix

  7. cp .envrc.tpl .envrc and edit values of .envrc as appropriate

  8. direnv allow .envrc

  9. docker-compose config (optional)

  10. docker-compose up -d

  11. Check ${DOMAIN_TRAEFIK} in the browser to see if ssl certificates are active. Sometimes it is necessary to docker restart traefik depending on timing with regards to DNS propagation. Sometimes rate limits with free tier DNS providers can cause it to take some time before traefik successfully obtains valid SSL certificates.

Provision instance with Matrix (Ansible from the provisioner)

  1. cd ansible

  2. mkdir -p matrix-docker-ansible-deploy/inventory/host_vars/${DOMAIN_MATRIX}

  3. cp hosts.tpl matrix-docker-ansible-deploy/inventory/hosts

  4. cp host-vars.yml.tpl matrix-docker-ansible-deploy/inventory/host_vars/${DOMAIN_MATRIX}/vars.yml

  5. sed -i "s/<your-matrix-domain>/${DOMAIN_MATRIX}/g" matrix-docker-ansible-deploy/inventory/hosts

  6. Continue following docs of matrix-docker-ansible-deploy repo

In summary:

  1. Configure DNS:

    e.g.

        Type: CNAME
        Name ${DOMAIN_ELEMENT}
        Target ${DOMAIN_MATRIX};
        Type: SRV
        Service: _matrix-identity
        Protocol: TCP
        Priority: 10
        Weight: 0
        Port: 443
        Target: ${DOMAIN_MATRIX}
  1. cd matrix-docker-ansible-deploy

  2. ansible-playbook -i inventory/hosts setup.yml --tags=setup-all

  3. ansible-playbook -i inventory/hosts setup.yml --tags=start

Register users

  1. SSH to server as before
  2. Add admin user to Synapse (Space prepended to avoid password staying in bash history), sudo /usr/local/bin/matrix-synapse-register-user <user> <password> 1
  3. You can log in at ${DOMAIN_MATRIX}/synapse-admin with the following entered into form fields: <user>, <password>, ${DOMAIN_MATRIX}

Edit templates and rerun

  1. Read about how to configure playbook for dimension by retrieving an access token

  2. Make changes to inventory/host_vars/${DOMAIN_MATRIX}/vars.yml e.g.

    • Create dedicated dimension non-admin user (through the synapse admin portal, @dimension:${DOMAIN} is a good name), then fill in appropriate value for MATRIX_DIMENSION_ACCESS_TOKEN (see step 14.)
    • To configure dimension you need to read and uncomment block starting with line, ## The following block can only be uncommented on a second run
    • Supply valid values for matrix_dimension_admins (e.g. @dimension:{{ matrix_domain }} or a user created as in first step of this block
  3. Subsequent runs: ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start

Manual steps to follow

  • Optional, only if Jitsi was configured with auth: Register Jitsi users e.g docker exec matrix-jitsi-prosody prosodyctl --config /config/prosody.cfg.lua register <USERNAME> matrix-jitsi-web <PASSWORD>

  • Note, it is not possible to configure dimension by config files e.g. To set local jitsi server to room, in Element on room settings, go to Integrations Manager (Add widgets, bridges & bots) → Jitsi Conference and set Jitsi Domain and Jitsi Script URL appropriately.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published