diff options
author | Quentin Dufour <quentin@dufour.io> | 2021-01-29 17:17:28 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@dufour.io> | 2021-01-29 17:17:28 +0100 |
commit | 7bdea778117416d406a46dec60913d2a4ad7e553 (patch) | |
tree | 48cde6f3fce26687ec0004725df99332920d6f25 /app/jitsi/integration/prosody/prosody.cfg.lua | |
parent | cee95ad0616f9c55cea6917c88b49366304a7287 (diff) | |
download | infrastructure-7bdea778117416d406a46dec60913d2a4ad7e553.tar.gz infrastructure-7bdea778117416d406a46dec60913d2a4ad7e553.zip |
WIP debugging jitsi
Diffstat (limited to 'app/jitsi/integration/prosody/prosody.cfg.lua')
-rw-r--r-- | app/jitsi/integration/prosody/prosody.cfg.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/jitsi/integration/prosody/prosody.cfg.lua b/app/jitsi/integration/prosody/prosody.cfg.lua index 215bb5b..e5d86bb 100644 --- a/app/jitsi/integration/prosody/prosody.cfg.lua +++ b/app/jitsi/integration/prosody/prosody.cfg.lua @@ -1,3 +1,27 @@ +modules_enabled = { + "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 + "posix"; -- POSIX functionality, sends server to background, enables syslog, etc. + "version"; -- Replies to server version requests + "uptime"; -- Report how long server has been running + "time"; -- Let others know the time here on this server + "ping"; -- Replies to XMPP pings with pongs + "pep"; -- Enables users to publish their mood, activity, playing music and more + -- jitsi + --"smacks"; -- not shipped with prosody + "carbons"; + "mam"; + "lastactivity"; + "offline"; + "pubsub"; + "adhoc"; + "websocket"; + --"http_altconnect"; -- not shipped with prosody +} + plugin_paths = { "/usr/share/jitsi-meet/prosody-plugins/" } log = { |