User Tools

Site Tools


computing:synapse

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
computing:synapse [2022/11/21 18:27] oemb1905computing:synapse [2024/01/30 03:17] (current) oemb1905
Line 3: Line 3:
   * **Jonathan Haack**   * **Jonathan Haack**
   * **Haack's Networking**   * **Haack's Networking**
-  * **webmaster@haacksnetworking.org**+  * **webmaster@haacksnetworking.org** 
  
 ------------------------------------------- -------------------------------------------
Line 84: Line 84:
   sudo --user elementweb tar -xvf element-v1.10.12.tar.gz   sudo --user elementweb tar -xvf element-v1.10.12.tar.gz
   rm element-v1.10.12.tar.gz   rm element-v1.10.12.tar.gz
-  cd /var/www/elemenet.gnulinux.club/+  cd /var/www/element.gnulinux.club/
   ln -s element-v1.10.12/ element   ln -s element-v1.10.12/ element
-  cd /var/www/elemenet.gnulinux.club/element +  cd /var/www/element.gnulinux.club/element 
-  cp config-sample.json config.jason+  cp config-sample.json config.json
   nano config.json   nano config.json
   <"base_url": "https://matrix.gnulinux.club",>   <"base_url": "https://matrix.gnulinux.club",>
Line 117: Line 117:
   <txn_limit: 10000>   <txn_limit: 10000>
   <args:>   <args:>
-    <user: synapsenew>+    <user: synapseusr>
     <password: mommalovesU>     <password: mommalovesU>
-    <database: synapsenewdb>+    <database: synapsedb>
     <host: localhost>     <host: localhost>
     <port: 5432>     <port: 5432>
Line 125: Line 125:
     <cp_max: 10>     <cp_max: 10>
  
-You now need to install postgresql and create a database with a dedicated non-root user: 
- 
-  sudo apt install postgresql 
-  sudo -u postgres bash 
-  createuser --pwprompt synapse_user 
-  createdb --encoding=UTF8 --locale=C --template=template0 --owner=synapse_user synapse 
-  exit 
-   
 After creating the database, inform synapse of how to reach it in the ''pg_hba.conf'' file as follows: After creating the database, inform synapse of how to reach it in the ''pg_hba.conf'' file as follows:
  
   nano /etc/postgresql/13/main/pg_hba.conf   nano /etc/postgresql/13/main/pg_hba.conf
-  <host    synapse     synapse_user    ::1/128     md5>+  <host    synapsedb     synapseusr    ::1/128     md5>
   sudo systemctl reload postgresql   sudo systemctl reload postgresql
-   
-It's now time to edit the file ''/etc/matrix-synapse/homeserver.yaml''. Remove the default database configuration, and replace it with the credentials you just made: 
  
-  <database:> +Check that the configuration you established is functioning by restarting the service with ''systemctl restart matrix-synapse''. As long as everything is functioning, you can now create an admin user. Temporarily comment out user registration on ''/etc/matrix-synapse/homeserver.yaml'' and restart the service again ''systemctl restart matrix-synapse'' in order to create the user. Notethe user creation will fail if you do not do this.
-  <name: psycopg2> +
-  <txn_limit: 10000> +
-  <args:> +
-    <user: synapse_user> +
-    <password: secretpassword> +
-    <database: synapse+
-    <hostlocalhost> +
-    <port: 5432> +
-    <cp_min: 5> +
-    <cp_max: 10>+
  
-There are now some options that you can configure based on personal preference. Hack Liberty has its own recommendations, and I agreed with some and not with others. Moreover, I also found that Matrix/Synapse is currently requiring a stricter recipe for the yaml config than their template or even the official docs recommend. I was unable to get to the ''homeserver.yaml'' to work without adding a ''base_url'' line and a Google V2 challenge. Make sure to refer to Synapse's [[https://matrix-org.github.io/synapse/develop/usage/configuration/config_documentation.html|official docs]] for your use case and so that you understand what they each do. Here are the "optional" configurations that I have active, some of which I had to configure to make everything work: +  sudo -u postgres bash 
- +  register_new_matrix_user -c /etc/matrix-synapse/homeserver.yaml http://localhost:8008
-  <public_baseurl: "https://gnulinux.club"> +
-  <require_auth_for_profile_requests: true> +
-  <limit_profile_requests_to_users_who_share_rooms: true> +
-  <include_profile_data_on_invite: false> +
-  <allow_public_rooms_over_federation: true> +
-  <allow_profile_lookup_over_federation: true> +
-  <allow_device_name_lookup_over_federation: true> +
-  <enable_registration: True> +
-  <enable_registration_captcha: True> +
-  <recaptcha_public_key: "enter pub key here"> +
-  <recaptcha_private_key: "enter priv key here"> +
-  <registration_shared_secret"yourmomismykey">+
      
-In my casematrix was not currently allowing un-challenged, or un-tokened user registration, so adding the [[https://www.google.com/recaptcha/about/|Google Challenge]] was required in order to make it functional (keep verify origin off)I also had to define the ''base_url'' and ''enable_registration'' explicitlyFrom researching forums and reddits onlineI was able to ascertain that this is because Matrix changes their criteria/allowances depending on exploits, current threatsetc., actively, meaning that what might be allowed on day x is no longer supported on day yetc. Now that synapse is more or less configuredit's time to install your web server of choiceI prefer apache2 since I have a long history of making reverse proxy configs for it, and even got some changes [[https://gitlab.com/oemb1905|committed]](see June 8, 2022to the recipes project on gitlab (yay!). Note: Since ACME'''cert-only'' command always fails for me, whenever I do apache reverse proxies, I first set up a slim website with stock virtualhost, A records on my DNS host, pull in certs on it, then disable it, as follows:+Record the password you chose in a safe locationand then uncomment the user registration on ''/etc/matrix-synapse/homeserver.yaml'' again and once again restart the service ''systemctl restart matrix-synapse''. This is required because you cannot manually create users while the ''enable_registration: true'' parameter is activeLikelyyou will now want to also create a non-admin user for yourselfand the webgui is very convenient for this so just visit element.gnulinux.club and then register. Once you log inmake sure that you can access federated instancesspacesand rooms. The last thing we need to do is add the ability for the server to send emails so users can recover accounts when needed via emailTo do that, first make sure you have a working [[https://wiki.haacksnetworking.org/doku.php?id=computing:exim4|https://wiki.haacksnetworking.org/doku.php?id=computing:exim4]]email server. Please note that an incoming (IMAPserver is not needed, only outgoing (smtp/MTA). Once that is setup, add the following lines to your ''/etc/matrix-synapse/homeserver.yaml'' configuration:
  
-  sudo apt install apache2 +  sudo nano /etc/matrix-synapse/homeserver.yaml 
-  sudo certbot --authenticator standalone --installer apache -d gnulinux.club --pre-hook "systemctl stop apache2" --post-hook "systemctl start apache2+  <public_baseurl: "https://matrix.gnulinux.club"> 
-  a2dissite 000-default.conf +  <email:> 
-   +    <smtp_host: haacksnetworking.org
-Refer to [[https://wiki.haacksnetworking.org/doku.php?id=computing:apachesurvival|apache survival]] if you need help on setting up virtual hosts, etcand/or apache/LAMP stacks. Once you build the certs and disabled the dummy website, then create two reverse proxy virtual hosts like these:+    <smpt_port25> 
 +    <notif_from: "admin@gnulinux.club"> 
 +    <require_transport_securitytrue>
  
-  * [[https://repo.haacksnetworking.org/oemb1905/haackingclub/-/blob/master/apache/virtualhosts/synapse.conf|virtualhost-80.conf]] +Again, note that there is no need to set up an incoming email server nor tolerate spam on the server you are sending toIn my case, my smtp server MTA is a relay/MTA (only) with domains that are allowed to send through it explicitly white listedNow that email is up, let's tweak the upload settings so that people can upload images that are larger than a megabyte and have reasonable purge directives:
-  * [[https://repo.haacksnetworking.org/oemb1905/haackingclub/-/blob/master/apache/virtualhosts/synapse-ssl.conf|virtualhost-443.conf]]+
  
-Once the reverse proxies are setup, restart the service with ''systemctl restart apache2.service''. It's now time to set up a turn server so clients behind NAT can function properly. To do that, do as follows: +  sudo nano /etc/matrix-synapse/homeserver.yaml 
- +  <max_upload_size: 1000M
-  sudo apt install coturn +  <dynamic_thumbnails: true
-  mkdir -p /etc/coturn/certs +  <media_retention:> 
-  sudo chown -R turnserver:turnserver /etc/coturn/ +      <local_media_lifetime: 90d
-  chmod -R 700 /etc/coturn/ +      <remote_media_lifetime: 14d
-  pwgen -s 64 1 +       
-  <it dumps a key> +Also, make sure to add the following line of code within each nginx http server block:
-  sudo nano /etc/turnserver.conf +
-  <use-auth-secret+
-  <static-auth-secret=YOUR-STATIC-AUTH-SECRET-HERE+
-  <realm=yoursite.com:5349+
-  <no-tcp-relay+
-  <denied-peer-ip=10.0.0.0-10.255.255.255+
-  <denied-peer-ip=192.168.0.0-192.168.255.255> +
-  <denied-peer-ip=172.16.0.0-172.31.255.255> +
-  <allowed-peer-ip=10.0.0.1> +
-  <user-quota=12> +
-  <total-quota=1200> +
-  <cert=/etc/coturn/certs/fullchain.pem> +
-  <pkey=/etc/coturn/certs/privkey.pem> +
-  sudo systemctl restart coturn +
- +
-Now that you have configured a turn server, make sure that synapse knows how to leverage it by adding a configuration block to ''/etc/matrix-synapse/homeserver.yaml'' as follows: +
- +
-  turn_uris: [ "turns:yoursite.com:5349?transport=udp", "turns:yoursite.com:5349?transport=tcp" ]` +
-  turn_shared_secret: "YOUR-STATIC-AUTH-SECRET-HERE" +
-  turn_user_lifetime: 86400000 +
-  turn_allow_guests: false +
- +
-Now, let's make sure that the turn server can use TLS encryption by copying the certs from Let's Encrypt to it's working directory. (NoteI think these should be updated to symlinks.)  +
- +
-  cp /etc/letsencrypt/live/gnulinux.club/fullchain.pem /etc/coturn/certs/ +
-  cp /etc/letsencrypt/live/gnulinux.club/privkey.pem /etc/coturn/certs/ +
-  sudo chown turnserver:turnserver -R /etc/coturn/ +
-  sudo service coturn force-reload +
-  sudo service coturn restart+
      
-So since I could not get token user creation to work, I ended up using Google Challenge instead. Nevertheless, I include this here because I did create this infrastructure, and will leverage it if/when token authentication begins to work again. Make sure to record all keys/passwords, etc., in a secure manager or FDE drive that's offline. Begin by creating two users for the instance, one that's the administrator for it, and another that's used as a proxy for registration requests with a token.+  <client_max_body_size 1000M;>
  
-  register_new_matrix_user -c /etc/matrix-synapse/homeserver.yaml http://localhost:8008+Alright, so now it's time to carry on with setting up jitsi. Again, as with element and matrix, always check the [[https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-quickstart/|official documentation]] for the latest releases/gpg keys, etc.:
  
-After the database users are thus created and passwords specified and recorded, you now need to install matrix/synapse's registration tool with python-pip.+  curl https://download.jitsi.org/jitsi-key.gpg.key | sudo sh -c 'gpg --dearmor > /usr/share/keyrings/jitsi-keyring.gpg' 
 +  echo 'deb [signed-by=/usr/share/keyrings/jitsi-keyring.gpg] https://download.jitsi.org stable/' | sudo tee /etc/apt/sources.list.d/jitsi-stable.list > /dev/null 
 +  sudo apt update 
 +  sudo apt install jitsi-meet 
 +  <enter domain jitsi.gnulinux.club> 
 +  <generate self-signed> 
 +   
 +Once the install finishes, let's create let's encrypt using the official script from Jitsi, which will automatically configure a turn server and create a server block in nginx for us:
  
-  sudo apt install python3-pip +  /usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh
-  pip3 install matrix-registration==1.0.0.dev7 +
-  pip3 install psycopg2-binary +
- +
-Once that's done, you will need to create a database user and database for the accountsYou will need to alternate between the user and root to do this and might have to tweak permissions. +
- +
-  sudo -u postgres bash +
-  createuser --pwprompt matrix_reg_user +
-  createdb --owner=matrix_reg_user matrix_reg+
      
-Now that the database registration user and password have been created, configure the synapse/matrix instance to leverage those credentials by appending this additional entry to the ''pg_hba.conf'' file:+We now need to configure Element to use jitsi, which we do as follows:
  
-  nano /etc/postgresql/13/main/pg_hba.conf +  nano /var/www/element.gnulinux.club/element/config.json 
-  host    matrix_reg     matrix_reg_user    ::1/128     md5+  <"preferredDomain""jitsi.gnulinux.club"> 
 +  systemctl restart matrix-synapse
      
-You now need to specify how the reverse proxy for registration can find the base url and the synapse/matrix services, etcTo do that, you create a ''config.yaml'' file as follows:+You can verify that jitsi is working by ''ps -aux | jitsi'' and then visit jitsi.gnulinux.club (adjusted for your domain) to verify you can create and join new meeting. Additionally, you can navigate to ''etc/turnserver.conf'' to see the entries jitsi created and likewise verify the server block it created at ''/etc/nginx/sites-enabled/jitsi.gnulinux.club''. To upgrade, find the latest release, and download it:
  
-  sudo nano /home/registration/matrix-registration/config.yaml +  https://github.com/element-hq/element-web/releases 
- +  wget https://github.com/element-hq/element-web/releases/download/v1.11.55/element-v1.11.55.tar.gz 
-The contents of ''config.yaml'' should look like this: +  tar -xvf element-v1.11.55.tar.gz 
- +  cd /var/www/gnulinux.club/element 
-  * [[https://repo.haacksnetworking.org/oemb1905/haackingclub/-/blob/master/configs/config.yaml|config.yaml]] +  cp -ar config.json ../ 
- +  ln -s element-v1.10.12/ element
-It's now best practice to create a systemd unit for the registration service itself since this is accordingly a public instance and might need the registration toolchain restarted etcTo do that, the official docs call for creating a systemd unit as follows: +
- +
-  sudo useradd -m registration +
-  sudo nano /etc/systemd/system/matrix-registration.service +
- +
-The contents of the ''matrix-registration.service'' file should have locations that match the configurations you made for registration aboveSomething like the following is recommended: +
- +
-  * [[https://repo.haacksnetworking.org/oemb1905/haackingclub/-/blob/master/configs/matrix-registration.service|matrix-registration.service]]+
      
-Once the systemd unit is created and the locations in the block linked to your production locations, then enable the unit, reload the units, and start the serviceNote: As the first block states, you won't need to individually restart this service as it will restart when you restart the default service ''systemctl restart matrix-synapse.service''.  +Make sure to have .well-knowns established for client and support as well:
- +
-  systemctl daemon-reload +
-  systemctl --user enable matrix-registration +
-  systemctl --user start matrix-registration +
- +
-Once the registration and account creation services are installed and functional, it is now time to create the web client, which will be used for clients who want to register or test out the instance, and also for users to directly create new matrix accounts on your instance. To do that, let's add a dedicated user for element, which is the standard/default web clientand install the element-web content management system: +
- +
-  sudo useradd -m elementweb +
-  cd /home/elementweb/ +
-  sudo --user elementweb wget https://github.com/vector-im/element-web/releases/download/v1.10.12/element-v1.10.12.tar.gz +
-  sudo --user elementweb tar -xvf element-v1.10.12.tar.gz  +
-  mv element-v1.10.12 /var/www/element +
-  cd /var/www/element +
-  nano config.json+
      
-The ''config.json'' file should like something like what I have belowNote: this file is notorious for causing the "host cannot be found error" that is all over forumsRemember to change all the entries to your domain and make sure the ''base_url'' matches what you have in ''/etc/matrix-synapse/homserver.yaml''Here's what mine looks like:+  sudo touch /var/www/gnulinux.club/.well-known/matrix/client 
 +   
 +With the following: 
 +   
 +  { 
 +    "m.homeserver":
 +        "base_url": "https://matrix.gnulinux.club" 
 +    } 
 +  } 
 +   
 +Also identify support: 
 +   
 +  sudo touch /var/www/gnulinux.club/.well-known/matrix/support
  
-  * [[https://repo.haacksnetworking.org/oemb1905/haackingclub/-/blob/master/configs/config.json|config.json]]+With the following:
  
-If you have not already done somake sure to add an A record for element.domain.tld to your DNS hostIt's now time to create an apache virtual host for the subdomain as follows:+  {"contacts": [{"matrix_id": "@oemb1905:gnulinux.club""email_address": "webmaster@haacksnetworking.org","club.gnulinux.phone_number""+13105651874", "role": "m.role.admin"}],"support_page": "https://gnulinux.club/code-conduct.pdf"}
  
-  sudo nano /etc/apache2/sites-enabled/element80.conf  +Finally, make sure that browsers don't download these by adding a location to your TLD block:
-  sudo nano /etc/apache2/sites-enabled/element443.conf+
  
-Contents:+  location /.well-known/matrix { 
 +    allow all; 
 +    add_header access-control-allow-origin *; 
 +    add_header content-type application/json; 
 +  }
  
-  * [[https://repo.haacksnetworking.org/oemb1905/haackingclub/-/blob/master/apache/virtualhosts/element.matrix.conf|element80.conf]] +More updates below when they come.
-  * [[https://repo.haacksnetworking.org/oemb1905/haackingclub/-/blob/master/apache/virtualhosts/element.matrix-ssl.conf|element443.conf]] +
- +
-Then create the certs, and enable the virtualhosts: +
- +
-  sudo certbot --authenticator standalone --installer apache -d element.gnulinux.club --pre-hook "systemctl stop apache2" --post-hook "systemctl start apache2" +
-  a2ensite element80.conf +
-  a2ensite element443.conf +
-  systemctl restart apache2.service +
-   +
-Once the apache web server is restarted, it's time to debug your instance. To do that, remember these two essential skills: +
- +
-  tail -f /var/log/example.log +
-  sudo apache2ctl configtest +
-   +
-Between these two debugging tools, you should be in good shape to get everything up and running! Okay, that took a lot to document but it's worth it. Also, if you are serving others in a public facing community, make sure you have [[https://repo.haacksnetworking.org/oemb1905/haackingclub/-/blob/master/scripts/sane-vm-backup.sh|appropriate backup scripts]] for this VM. Utilize rsync or similar to ensure you have those backups offsite as well as on site, and also provision a hot-spare in case your self-hosted or co-located hardware fails.+
  
- --- //[[jonathan@haacksnetworking.org|oemb1905]] 2022/11/20 01:58//+ --- //[[jonathan@haacksnetworking.org|oemb1905]] 2024/01/30 03:09//
computing/synapse.1669055270.txt.gz · Last modified: 2022/11/21 18:27 by oemb1905