Project

General

Profile

Ungleich Matrix-as-a-Service (MaaS) » History » Version 28

Sanghee Kim, 08/24/2020 08:43 PM

1 1 Timothée Floure
h1. Ungleich Matrix-as-a-Service (MaaS)
2
3 3 Timothée Floure
{{toc}}
4
5 8 Timothée Floure
*%{color:green}This document concerns end-users/customers. See [[The ungleich Matrix infrastructure]] page for server-side documentation.%*
6 1 Timothée Floure
7
h2. Status
8
9 8 Timothée Floure
This document is *in PRODUCTION*
10 2 Timothée Floure
11
h2. Overview
12
13 5 Timothée Floure
"Matrix":https://matrix.org/ is an open and decentralized IM system supporting modern features such as end-to-end encryption, message history, bridging to other networks, VoIP and more. It is based a federated structure, similar to what is done with emails: users use a home server as 'gateway' to the network. Our MaaS offer provides you with such a server as well as an hosted web client, "Riot":https://about.riot.im/.
14 1 Timothée Floure
15 5 Timothée Floure
"Riot's features page"https://about.riot.im/features gives you a good overview of Matrix's possibilities.
16
17 25 Sanghee Kim
h2. Domain
18
19 3 Timothée Floure
h3. Q: What server name will I get?
20
21 11 Nico Schottelius
You can either use your own domain name (see below) or ask us for $ORGANIZATION.0co2.cloud.
22 1 Timothée Floure
23 2 Timothée Floure
h3. Q: Can I use a custom domain name?
24 3 Timothée Floure
25 11 Nico Schottelius
Yes! You will have to give us three domain names:
26 1 Timothée Floure
27 13 Nico Schottelius
* a) *the homeserver*: this is where the actual server is running - this can be on domain "A" - in case of ungleich we use *ungleich.matrix.ungleich.cloud* and give away *YOURNAME.matrix.ungleich.cloud* for free
28
* b) *the address of the web client* - this is where people with their webbrowser go to - this should be different from "A". Often this is something like *chat.example.org* or *matrix.example.org*. In case of ungleich this domain is *matrix.ungleich.ch.*
29
* c) *the main matrix domain*: the one you use for users and rooms. This is usually your main domain and is different from A. For ungleich this is *ungleich.ch*. Most people will choose their "main domain", for instance *example.org* here.
30 11 Nico Schottelius
31
You will also need to configure 2 files below *the main matrix domain*
32
33 12 Nico Schottelius
- */.well-known/matrix/server* containing *{"m.server": "homeserver:443"}*.
34 11 Nico Schottelius
       Example: <pre>$ curl https://ungleich.ch/.well-known/matrix/server
35 1 Timothée Floure
{"m.server": "ungleich.matrix.ungleich.cloud:443"}</pre>
36 12 Nico Schottelius
   - */.well-known/matrix/client* containing *{ "m.homeserver": { "base_url": "https://homeserver" } }*. Example: <pre>
37 11 Nico Schottelius
curl https://ungleich.ch/.well-known/matrix/client 
38
{ "m.homeserver": { "base_url": "https://ungleich.matrix.ungleich.cloud" } }
39
</pre>
40 1 Timothée Floure
41 27 Sanghee Kim
42 15 Nico Schottelius
h3. Q: Why can't I use the same domain for everything?
43
44
The home server should be on a different domain to prevent possible XSS (cross site scripting) attacks.
45
You can find details about it on https://github.com/matrix-org/synapse#security-note.
46
47
For this reason we offer YOURNAME.matrix.ungleich.cloud for free for all homeservers.
48
49 16 Nico Schottelius
h3. Q: How many domains do I need for a standard matrix setup?
50
51
Typically 3 domain names are used:
52
53
* The domain that defines your *room and user names* (for ungleich this is *ungleich.ch*)
54 1 Timothée Floure
* The domain that your users type in the web browser to join the chat (for ungleich this is *matrix.ungleich.ch*)
55
* The domain on which your *homeserver* (the server providing the matrix server) is reachable (for ungleich this is *ungleich.matrix.ungleich.cloud*)
56
57
The homeserver needs to be on a different domain than the other two to avoid possible XSS attacks.
58 28 Sanghee Kim
59
h3. Q: Can I change the subdomain after the Matrix setup? 
60
61
No, since your homeserver will federate with the broader network.
62
63 14 Nico Schottelius
64 1 Timothée Floure
h2. Registration
65
66
h3. Q: What kind of registration policy could be implemented for a matrix instance?
67
68
You can easily:
69
70
- Close registrations, create users by hand from the admin UI.
71
- Let anyone register.
72
- Filter registrations on email pattern (e.g. anyone with a @ungleich.ch email address can register).
73
- Use an external source for authentication (e.g. company directory / account system).
74
- Use a token based registration (https://matrix.org/docs/projects/other/matrix-registration)
75
76
If your use case is in the above list, you can get in touch with our team to find a fitting solution.
77
78
h3. Q: We would like to be able to moderate registration requests. For example, we'll have a list of approved emails to reference against those submitted. Would this be possible?
79
80
There is not 'approval' system in matrix/synapse right now. Either:
81
82
Everyone can register.
83
You register new users via the admin interface.
84
Approval is handled on a third-party service, which provides an authentication backend to matrix/synapse.
85
We filter on registration details -> if you have a list of email, we should be able to only allow those emails (hardcoded config in matrix homserver, will require an intervention on the ungleich side for edition) to register.
86
87 26 Sanghee Kim
88 1 Timothée Floure
h2. Encryption
89
90
h3. Q: Are video/audio calls in Matrix End-to-end-encrypted(E2EE)?
91
92
Video & Phone is handled by a jitsi server by default - matrix adds it as an integration, but does not handle video/audio directly. So the answer is: not E2EE for audio/video.
93
94
h3. Q: Does ungleich have access to my Matrix admin UI? How does my chat content stay secure?
95
96
Once you change the initial password we do not have external access to the software anymore but we have access to the underlying server since we manage it: we can read and change things in the database 'by hand' since we have physical access to it. However end-to-end encrypted rooms stay secure. The content is encrypted with the user's keys and to us it will be shown in ciphertext.
97 26 Sanghee Kim
98
h2. FAQ
99
100
h3. Q: How many users can I have? What are the resources allocated to my matrix server?
101
102
We do not enforce a limit of the number of users: you can do anythign you want as long as you fit the resources allocated to your homeserver. You are provided with 1GB of memory, 1vCPU and 20GB of storage with the base offer, which can be extended on demand (Pricing is the same as ipv6onlyhosting VMs, since that's what we use underneath).
103
104
h3. Q: What server implementation and version do you use?
105
106
We use the "synapse reference homeserver":https://github.com/matrix-org/synapse/ package "provided by the buster-backports repository":https://packages.debian.org/buster-backports/matrix-synapse.
107
108
h3. Q: What client can I use? Do you recommend one?
109
110
We recommend and provide you a web version of the "Riot client":https://about.riot.im/ (desktop and mobile) but you can use "any matrix client":https://matrix.org/clients/.
111
112
h3. Q: Can I set option X in synapse/riot?
113
114
Yes! Contact the ungleich support with the requested changes, which we will apply to the deployment configuration of your instance.
115
116
h3. Q: Do you provide a TURN server for VoIP?
117
118
Yes.
119
120
h3. Q: What are application services can I use?
121
122
We support bridging to other services (IRC, Matrix, Telegram, Slack, ...) via "matterbridge":https://github.com/42wim/matterbridge, deployed on demand.
123
124
h3. Q: If I do not use an LDAP directory, can I still manage my users?
125
126
Yes! We provide you with a management UI on https://admin.matrix.ungleich.cloud. You will have to use the full address of your matrix homeserver (e.g. ungleich.matrix.ungleich.cloud).
127
128
h3. Q: How can I delete rooms in Matrix?
129
130
To delete a room, simply everybody in the room needs to leave the room. Then the room gets removed from the server. If you are admin, you can kick everybody in the room if you want to force remove the room.