meta data for this page
  •  

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
digital:server:matrixsynapse [2021/06/04 19:07]
natrius [Step 7 - Setup UFW Firewall] - deleted 8448
digital:server:matrixsynapse [2021/09/16 14:01]
natrius [Step 5] - deleted both fixmes, no regedit used, so no escaping needed
Line 218: Line 218:
 } }
 </code> </code>
- 
-FIXME ''location ~ ^/.well-known/matrix/client$ {'' might need to escape the . Check it! 
- 
-FIXME Same for ''location ~ ^/.well-known/matrix/server$ {''? 
  
 Save and exit. Save and exit.
Line 306: Line 302:
 ### Step 7 - Setup UFW Firewall ### Step 7 - Setup UFW Firewall
  
-Open the needed ports for our services. We will only allow SSH, HTTP, HTTPS and 8448 (for federation) connection on the UFW firewall configuration. To add them to the UFW firewall configuration, run the following commands.+Open the needed ports for our services. We will only allow SSH, HTTP, and HTTPS connection on the UFW firewall configuration. To add them to the UFW firewall configuration, run the following commands.
  
     sudo ufw allow ssh     sudo ufw allow ssh
Line 411: Line 407:
  
 If your need help, get as much information as possible ([[#whats_my_version|Installed version]], ...) and join https://matrix.to/#/#synapse:matrix.org. If it worked before, try to remember what was changed. If your need help, get as much information as possible ([[#whats_my_version|Installed version]], ...) and join https://matrix.to/#/#synapse:matrix.org. If it worked before, try to remember what was changed.
 +
 +### Problems with sending pictures
 +
 +Open the ''%%nano nginx.conf%%'' file and find change ''%%client_max_body_size 1M;%%'' to 
 +
 +
 +<code>
 + http{
 +    ...
 +    client_max_body_size 50M;
 +    ...
 + }
 +</code>
 +
  
 ### Whats my version ### Whats my version