Open almereyda opened 4 years ago
Our TURN support is not fully ccomplete yet. This will be adddressed once https://github.com/jitsi/docker-jitsi-meet/pull/163
Thank you! Is it going to be able to use an existing external coturn instance?
That's what we are doing with injecting the secret key into Prosody.
On Mon, 6 Apr 2020 at 23:07, Pavel Struhar notifications@github.com wrote:
Thank you! Is it going to be able to use an existing external coturn instance?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.
For anyone who visits this issue, if you have followed the guide in meetrix.io and failed in prosody, here is the solution: https://github.com/jitsi/jitsi-meet/issues/6210
When using this Docker setup with a STUN/TURN server that has a shared secret defined, connections in Firefox will break unadvertedly.
Following https://meetrix.io/blog/webrtc/jitsi/setting-up-a-turn-server-for-jitsi-meet.html led me to do this
to add the shared secret and the correct host in
to add
"turncredentials";
tomodules_enabled
inand to bind-mount this file into the prosody container with a
volumes:
declaration indocker-compose.yml
likeIt would be nice if it would be possible to merely indicate the shared secret via an environment variable (
PROSODY_STUN_SECRET
?) and have this file and configuration deployed auto-magically into thejitsi/prosody
container.Or does it appear to be a better approach to keep this file manually downloaded, mounted and activated through the
XMPP_MODULES=turncredentials
key in.env
, instead of manually editingjitsi-meet.cfg.lua
?