diff options
author | Quentin Dufour <quentin@dufour.io> | 2021-02-01 08:40:59 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@dufour.io> | 2021-02-01 08:40:59 +0100 |
commit | 0a87d26e47646fb0a3e9a9399ea83b39640583b1 (patch) | |
tree | 66b79c1cd096fd1a0923aa35e93364d393f6b417 /app/jitsi/integration | |
parent | cb69a1123cc36c792cb0993ae46c3700a7391a62 (diff) | |
download | infrastructure-0a87d26e47646fb0a3e9a9399ea83b39640583b1.tar.gz infrastructure-0a87d26e47646fb0a3e9a9399ea83b39640583b1.zip |
Polish configuration
Diffstat (limited to 'app/jitsi/integration')
-rw-r--r-- | app/jitsi/integration/prosody/prosody.cfg.lua | 15 |
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" |