Element Call wasn't working properly
This commit is contained in:
@@ -3,15 +3,24 @@
|
|||||||
let
|
let
|
||||||
serverName = "atri.dad";
|
serverName = "atri.dad";
|
||||||
matrixDomain = "matrix.atri.dad";
|
matrixDomain = "matrix.atri.dad";
|
||||||
|
matrixRtcDomain = "matrixrtc.atri.dad";
|
||||||
|
|
||||||
|
# .well-known/matrix/server JSON (served from atri.dad for delegation)
|
||||||
wellKnownServer = builtins.toJSON {
|
wellKnownServer = builtins.toJSON {
|
||||||
"m.server" = "${matrixDomain}:443";
|
"m.server" = "${matrixDomain}:443";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# .well-known/matrix/client JSON (served from atri.dad for delegation)
|
||||||
wellKnownClient = builtins.toJSON {
|
wellKnownClient = builtins.toJSON {
|
||||||
"m.homeserver" = {
|
"m.homeserver" = {
|
||||||
base_url = "https://${matrixDomain}";
|
base_url = "https://${matrixDomain}";
|
||||||
};
|
};
|
||||||
|
"org.matrix.msc4143.rtc_foci" = [
|
||||||
|
{
|
||||||
|
type = "livekit";
|
||||||
|
livekit_service_url = "https://${matrixRtcDomain}";
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user