You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since last upgrade you recreate prosody.cfg.lua and /conf.d/jitsi-meet.cfg.lua at every restart that is not so nice. Because after restart STUN Server config in /conf.d/jitsi-meet.cfg.lua is lost!
How can I make STUN Server config persistent in /conf.d/jitsi-meet.cfg.lua:
[...]
turncredentials_secret = xxxx
turncredentials = {
{ type = "stun", host = "my.domain.com", port = "443" },
{ type = "turns", host = "my.domain.com", port = "443", transport = "udp" },
{ type = "turns", host = "my.domain.com", port = "443", transport = "tcp" }
};
[...]
modules_enabled = {
"bosh";
"pubsub";
"ping";
"speakerstats";
"conference_duration";
"turncredentials";
[...]
And also the prosody.cfg.lua config file:
[...]
modules_enabled = {
-- Generally required
"roster"; -- Allow users to have a roster. Recommended ;)
"saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
"tls"; -- Add support for secure TLS on c2s/s2s connections
"dialback"; -- s2s dialback support
"disco"; -- Service discovery
"turncredentials";
[...]
I can't see any variables, but now my hole config for STUN Server will lost after every reboot really?
Is there now way? I must really "mount out" the config directory like in my last post with Jitsi-web container?
Regards!
The text was updated successfully, but these errors were encountered:
Hello,
Since last upgrade you recreate prosody.cfg.lua and /conf.d/jitsi-meet.cfg.lua at every restart that is not so nice. Because after restart STUN Server config in /conf.d/jitsi-meet.cfg.lua is lost!
How can I make STUN Server config persistent in /conf.d/jitsi-meet.cfg.lua:
And also the prosody.cfg.lua config file:
I can't see any variables, but now my hole config for STUN Server will lost after every reboot really?
Is there now way? I must really "mount out" the config directory like in my last post with Jitsi-web container?
Regards!
The text was updated successfully, but these errors were encountered: