diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-01-28 19:28:15 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-01-28 19:28:15 +0100 |
commit | 0e848bb2d0e705e5e0858fe8f2c02a3c9c8f45e5 (patch) | |
tree | 8e90ed8e0ab6f79020e90fec9a24a90263a49f15 /app/jitsi/integration/prosody/prosody.cfg.lua | |
parent | 4809e27220d4805bce8f14585f902097f53607ee (diff) | |
download | infrastructure-0e848bb2d0e705e5e0858fe8f2c02a3c9c8f45e5.tar.gz infrastructure-0e848bb2d0e705e5e0858fe8f2c02a3c9c8f45e5.zip |
Polished prosody
Diffstat (limited to 'app/jitsi/integration/prosody/prosody.cfg.lua')
-rw-r--r-- | app/jitsi/integration/prosody/prosody.cfg.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/jitsi/integration/prosody/prosody.cfg.lua b/app/jitsi/integration/prosody/prosody.cfg.lua index 5f18e2a..2f75d83 100644 --- a/app/jitsi/integration/prosody/prosody.cfg.lua +++ b/app/jitsi/integration/prosody/prosody.cfg.lua @@ -4,6 +4,7 @@ use_libevent = true component_interface = "0.0.0.0" component_ports = { 5347 } http_ports = { 5280 } +https_ports = {} -- Not sure all modules are required modules_enabled = { @@ -13,14 +14,13 @@ modules_enabled = { "dialback"; -- s2s dialback support "disco"; -- Service discovery "posix"; -- POSIX functionality, sends server to background, enables syslog, etc. - "compression"; -- Stream compression (requires the lua-zlib package installed) "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"; + --"smacks"; -- not shipped with prosody "carbons"; "mam"; "lastactivity"; @@ -28,11 +28,12 @@ modules_enabled = { "pubsub"; "adhoc"; "websocket"; - "http_altconnect"; + --"http_altconnect"; -- not shipped with prosody } log = { - "*console"; + --log less on console with warn="*console"; or err="*console" or more with debug="*console" + info="*console"; } VirtualHost "jitsi" |