Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ experimental_features:
{{- if $root.Values.matrixRTC.enabled }}
# MSC3266: Room summary API. Used for knocking over federation
msc3266_enabled: true
# MSC4143: Matrix RTC Transport using Livekit Backend. This enables a client-server API for discovery of Matrix RTC backends
msc4143_enabled: true
# MSC4222 needed for syncv2 state_after. This allow clients to
# correctly track the state of the room.
msc4222_enabled: true
Expand All @@ -121,6 +123,13 @@ password_config:
enabled: false
{{- end }}
{{- end }}
{{- if $root.Values.matrixRTC.enabled }}

matrix_rtc:
transports:
- type: livekit
livekit_service_url: {{ (printf "https://%s" $root.Values.matrixRTC.ingress.host) }}
{{- end }}

{{- if dig "appservice" "enabled" false .workers }}

Expand Down
3 changes: 3 additions & 0 deletions newsfragments/855.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Configure experimental MSC4143 advertisement in Synapse when MatrixRTC is enabled.

This is in addition to the MSC4143 advertisement on the client well-known endpoint for now, but it is expected to replace it in time.
Loading