From 933a0f6d222e1fd99c8b508e937793fb11df7d61 Mon Sep 17 00:00:00 2001 From: EH <44804677+EtienneHenger@users.noreply.github.com> Date: Sun, 5 Jun 2022 23:34:51 +0200 Subject: [PATCH] Add example for Jitsi JVB STUN server --- roles/matrix-jitsi/defaults/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/matrix-jitsi/defaults/main.yml b/roles/matrix-jitsi/defaults/main.yml index c32682678..247a5ae62 100644 --- a/roles/matrix-jitsi/defaults/main.yml +++ b/roles/matrix-jitsi/defaults/main.yml @@ -238,6 +238,11 @@ matrix_jitsi_jvb_rtp_tcp_port: 4443 # matrix_jitsi_jvb_custom_config_extension: | # org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=false # org.jitsi.videobridge.ENABLE_STATISTICS=false +# One possible configuration is to add a STUN for the Jitsi JVB to use in case you are behind a NAT, +# as mentioned here: https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-quickstart/#advanced-configuration +# For example you can use a Google STUN: +# matrix_jitsi_jvb_custom_config_extension: | +# org.ice4j.ice.harvest.STUN_MAPPING_HARVESTER_ADDRESSES=stun.l.google.com:19302 matrix_jitsi_jvb_custom_config_extension: '' # Additional environment variables to pass to the Jitsi JVB container.