1 / 4

Matrix Synapse Installation and Configuration Guide

A step-by-step guide for installing and configuring Matrix Synapse server on Debian, generating SSL certificates, and setting up Nginx as a reverse proxy. Includes instructions for setting up firewall and creating a new user.

sjaramillo
Download Presentation

Matrix Synapse Installation and Configuration Guide

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. What is matrix synapse? @riot:matrix.hack4glarus @jason:matrix.krteam @jinguk:matrix.krteam matrix.krteam @riot2:matrix.hack4glarus matrix.hack4glarus matrix.ungleich @nico:matrix.ungleich @sami:matrix.ungleich

  2. Install matrix server apt-get update apt-get install wget wget -qO - https://matrix.org/packages/debian/repo-key.asc | sudo apt-key add - add-apt-repository https://matrix.org/packages/debian/ apt-get install matrix-synapse -y -->server name - type the matrix domain name -->for the anonymous data report, choose 'No' Start matrix server systemctl start matrix-synapse systemctl enable matrix-synapse cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 vi /etc/matrix-synapse/homeserver.yaml Config matrix server cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 vi /etc/matrix-synapse/homeserver.yaml port: 8448 bind_addresses: - '::' -'0.0.0.0' port: 8008 bind_addresses: ['::1', '127.0.0.1'] enable_registration: False registration_shared_secret: "copy from generated code" Restart matrix server systemctl restart matrix-synapse

  3. Generate SSL Letsencrypt Certificates apt-get install letsencrypt -y certbot certonly --rsa-key-size 2048 --standalone --agree-tos --no-eff-email --email [e-mail] -d [server_domain_name] Install nginx apt-get nginx -y systemctl start nginx systemctl enable nginx vi /etc/nginx/sites-available/matrix server { listen 80; server_name matrix.hakase-labs.io; return 301 https://$server_name$request_uri; } server { listen 443 ssl; listen [::]:443 ssl; server_name [domain_name]; ssl_certificate /etc/letsencrypt/live/[domain_name]/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/[domain_name]/privkey.pem; # If you don't wanna serve a site, comment this out root /var/www/html; index index.html index.htm; location /_matrix { proxy_pass http://localhost:8008; proxy_set_header X-Forwarded-For $remote_addr; } } ln -s /etc/nginx/sites-available/matrix /etc/nginx/sites-enabled/ nginx -t systemctl restart nginx

  4. Setup firewall ufw allow http ufw allow https ufw enable ufw status Add user register_new_matrix_user -c /etc/matrix-synapse/homeserver.yaml https://localhost:8448 New user localpart [root]: ungleich Password: Confirm password: Make admin [no]: yes Sending registration request... Success! Test Thank you, Andres

More Related