Merge branch 'master' into bye-bye-nginx-proxy

This commit is contained in:
Slavi Pantaleev
2024-01-11 08:35:53 +02:00
4 changed files with 44 additions and 1 deletions

View File

@ -58,7 +58,7 @@ appservice:
# Appservice bot details.
bot:
# Username of the appservice bot.
username: signalbot
username: {{ matrix_mautrix_signal_appservice_bot_username | to_json }}
# Display name and avatar for bot. Set to "remove" to remove display name/avatar, leave empty
# to leave display name/avatar as-is.
displayname: signal bridge bot

View File

@ -1,5 +1,6 @@
---
# Conduit is a simple, fast and reliable chat server powered by Matrix
# Project source code URL: https://gitlab.com/famedly/conduit
# See: https://conduit.rs
matrix_conduit_enabled: true
@ -66,3 +67,10 @@ matrix_conduit_trusted_servers:
# How many requests Conduit sends to other servers at the same time
matrix_conduit_max_concurrent_requests: 100
# TURN integration.
# See: https://gitlab.com/famedly/conduit/-/blob/next/TURN.md
matrix_conduit_turn_uris: []
matrix_conduit_turn_secret: ''
matrix_conduit_turn_username: ''
matrix_conduit_turn_password: ''

View File

@ -53,3 +53,15 @@ log = "info,state_res=warn,rocket=off,_=off,sled=off"
address = "0.0.0.0"
turn_uris = {{ matrix_conduit_turn_uris | to_json }}
{% if matrix_conduit_turn_secret != '' %}
turn_secret = {{ matrix_conduit_turn_secret | to_json }}
{% endif %}
# If you have your TURN server configured to use a username and password
# you can provide these information too. In this case comment out `turn_secret above`!
{% if matrix_conduit_turn_username != '' or matrix_conduit_turn_password != '' %}
turn_username = {{ matrix_conduit_turn_username | to_json }}
turn_password = {{ matrix_conduit_turn_password | to_json }}
{% endif %}