aboutsummaryrefslogtreecommitdiff
path: root/app/jitsi/integration/prosody
diff options
context:
space:
mode:
Diffstat (limited to 'app/jitsi/integration/prosody')
-rw-r--r--app/jitsi/integration/prosody/prosody.cfg.lua15
1 files changed, 11 insertions, 4 deletions
diff --git a/app/jitsi/integration/prosody/prosody.cfg.lua b/app/jitsi/integration/prosody/prosody.cfg.lua
index 92a40bf..b5bc0b9 100644
--- a/app/jitsi/integration/prosody/prosody.cfg.lua
+++ b/app/jitsi/integration/prosody/prosody.cfg.lua
@@ -21,12 +21,13 @@ modules_enabled = {
"websocket";
--"http_altconnect"; -- not shipped with prosody
}
+modules_disabled = { "s2s" }
plugin_paths = { "/usr/share/jitsi-meet/prosody-plugins/" }
log = {
--log less on console with warn="*console"; or err="*console" or more with debug="*console"
- debug="*console";
+ info="*console";
}
daemonize = false
use_libevent = true
@@ -45,10 +46,12 @@ muc_mapper_domain_base = "jitsi.deuxfleurs.fr";
cross_domain_bosh = false;
consider_bosh_secure = true;
-https_ports = { }; -- Remove this line to prevent listening on port 5284
-component_interface = "0.0.0.0"
-component_ports = { 5347 }
+--component_ports = { 5347 }
+component_ports = { } -- it seems we don't need external components for now...
+https_ports = { } -- we don't need http
http_ports = { 5280 }
+c2s_ports = { 5222 }
+s2s_ports = { }
-- https://ssl-config.mozilla.org/#server=haproxy&version=2.1&config=intermediate&openssl=1.1.0g&guideline=5.4
@@ -111,6 +114,10 @@ Component "internal.auth.jitsi" "muc"
muc_room_default_public_jids = true
VirtualHost "auth.jitsi"
+ ssl = {
+ key = "/var/lib/prosody/auth.jitsi.key";
+ certificate = "/var/lib/prosody/auth.jitsi.crt";
+ }
authentication = "internal_plain"
Component "focus.jitsi" "client_proxy"