mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
Update to 2022-07-20 22:00
This commit is contained in:
parent
5c914a617b
commit
eca2f00fb1
@ -116,7 +116,10 @@ jitsi_meet_conf_base:
|
|||||||
enableWelcomePage: True
|
enableWelcomePage: True
|
||||||
useStunTurn: True
|
useStunTurn: True
|
||||||
localRecording:
|
localRecording:
|
||||||
enabled: True
|
notifyAllParticipants: True
|
||||||
|
disableSelfRecording: True
|
||||||
|
recordingService:
|
||||||
|
enabled: "{{ (jitsi_jibri_recordings_base_url is defined) | ternary(True, False) }}"
|
||||||
p2p:
|
p2p:
|
||||||
enabled: True
|
enabled: True
|
||||||
enableUnifiedOnChrome: True
|
enableUnifiedOnChrome: True
|
||||||
|
@ -11,10 +11,7 @@ external_services = {
|
|||||||
{% for stun in jitsi_stun_servers %}
|
{% for stun in jitsi_stun_servers %}
|
||||||
{
|
{
|
||||||
type = "{{ stun | urlsplit('scheme') }}",
|
type = "{{ stun | urlsplit('scheme') }}",
|
||||||
host = "{{ stun | regex_replace('(turns?|stun):([^:]+)(:\d+)?.*', '\\2') }}",
|
host = "{{ stun | regex_replace('(turns?|stun):([^:]+)(:\d+)?.*', '\\2') }}{% if stun | regex_replace('(turns?|stun):.+:(\d+)?.*', '\\2') | int > 0 and stun | regex_replace('(turns?|stun):.+:(\d+)?.*', '\\2') | int < 65535 %}:{{ stun | regex_replace('(turns?|stun):.+:(\d+)?.*', '\\2') }}{% endif %}",
|
||||||
{% if stun | regex_replace('(turns?|stun):.+:(\d+)?.*', '\\2') | int > 0 and stun | regex_replace('(turns?|stun):.+:(\d+)?.*', '\\2') | int < 65535 %}
|
|
||||||
port = "{{ stun | regex_replace('(turns?|stun):.+:(\d+)?.*', '\\2') }}",
|
|
||||||
{% endif %}
|
|
||||||
{% if stun | urlsplit('query') is search('transport=') %}
|
{% if stun | urlsplit('query') is search('transport=') %}
|
||||||
transport = "{{ stun | urlsplit('query') | regex_replace('.*transport=(udp|tcp).*', '\\1') }}",
|
transport = "{{ stun | urlsplit('query') | regex_replace('.*transport=(udp|tcp).*', '\\1') }}",
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user