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
Next revision Both sides next revision
digital:server:matrixsynapsemisc [2019/01/28 17:32]
natrius
digital:server:matrixsynapsemisc [2020/06/17 18:40]
natrius
Line 2: Line 2:
  
 Different things, sometimes advanced and some things that just did not fit in the regular guide.  Different things, sometimes advanced and some things that just did not fit in the regular guide. 
 +
 +## Show the public rooms on the server
 +
 +''https://example.com/_matrix/client/r0/publicRooms''
  
 ## Add an SRV Record ## Add an SRV Record
Line 48: Line 52:
  
 SRV needed? SRV needed?
 +
 +#### Set up SRV (**DON'T DO IT IF YOU HAVE SET UP WELL.KNOWN ALREADY!**)
 +
 +By setting an SRV record in your DNS provider, it is possible to tell other matrix servers where to connect to the server, pointing them to the correct hostname and port, in this example the default port (8448) is still used:
 +
 +<code>
 +_matrix._tcp.example.com. 3600 IN SRV 10 5 443 synapse.example.com.
 +</code>
 +
 +There is still an A record needed, pointing to the IP-addess of synapse on the subdomain (matrix.example.com). This way others can add your user with ''@user:example.com'' instead of ''@user:matrix.example.com''.
  
  
 ## .well-known section ## .well-known section
 +
 Mathijs   Mathijs  
 it's a little early, but you could also add a section about .well-known it's a little early, but you could also add a section about .well-known
Line 59: Line 74:
 https://matrix.org/docs/spec/client_server/r0.4.0.html#server-discovery https://matrix.org/docs/spec/client_server/r0.4.0.html#server-discovery
 if you like reading spec :) if you like reading spec :)
 +
 +#### Proper explanation
 +
 +.well-known will be checked before SRV gets checked. 
  
 ## Coturn ## Coturn