Skip to content
README.md 632 B
Newer Older
Pierre Ozoux's avatar
Pierre Ozoux committed
# coturn

vi config/prosody/config/conf.d/jitsi-meet.cfg.lua

```
...
consider_bosh_secure = true;

turncredentials_secret = "xxx"
turncredentials = {
    { type = "stun", host = "stun.l.google.com:19302", port = "19302" },
    { type = "stun", host = "stun1.l.google.com:19302", port = "19302" },
    { type = "stun", host = "stun2.l.google.com:19302", port = "19302" },
    { type = "turns", host = "turn.liiib.re", port = "443", transport = "udp" },
    { type = "turns", host = "turn.liiib.re", port = "443", transport = "tcp" }
}
...

VirtualHost "meet.jitsi"
...
    modules_enabled = {
...
        "turncredentials";
...
```