Added a few .well-known examples.

This commit is contained in:
Hans van Zijst 2025-01-08 15:45:09 +01:00
parent d0c32f1ac6
commit 1c361a8092
Signed by: hans
GPG key ID: 43DBCC37BFDEFD72
6 changed files with 42 additions and 2 deletions

View file

@ -363,7 +363,7 @@ necessary:
Now tell the clients about this widget. Create Now tell the clients about this widget. Create
`.well-known/element/element.json`, which is opened by Element Web, Element Desktop `.well-known/element/element.json`, which is opened by Element Web, Element Desktop
and ElementX to find the Element Call widget. It should this: and ElementX to find the Element Call widget. It should look this:
``` ```
{ {

View file

@ -0,0 +1,6 @@
{
"call":
{
"widget_url": "https://call.example.com"
}
}

View file

@ -180,7 +180,11 @@ Pointing clients to the correct server needs this at
Very important: both names (example.com and matrix.example.com) must be A Very important: both names (example.com and matrix.example.com) must be A
and/or AAAA records in DNS, not CNAME. and/or AAAA records in DNS, not CNAME.
See [nginx](../nginx) for details about how to publish this data. You can also publish support data: administrator, security officer, helpdesk
page. Publish that as `.well-known/matrix/support`.
See the included files for more elaborate examples, and check
[nginx](../nginx) for details about how to publish this data.
# E-mail {#Email} # E-mail {#Email}

View file

@ -0,0 +1,12 @@
{
"m.homeserver": {
"base_url": "https://matrix.example.com"
},
"org.matrix.msc4143.rtc_foci":[
{
"type": "livekit",
"livekit_service_url": "https://livekit.example.com"
}
]
}

View file

@ -0,0 +1 @@
{"m.server": "matrix.example.com"}

View file

@ -0,0 +1,17 @@
{
"contacts": [
{
"email_address": "admin@example.com",
"matrix_id": "@john:example.com",
"role": "m.role.admin"
},
{
"email_address": "security@example.com",
"matrix_id": "@bob:example.com",
"role": "m.role.security"
}
],
"support_page": "https://support.example.com/"
}