diff options
author | Quentin <quentin@deuxfleurs.fr> | 2021-02-01 11:06:45 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2021-02-01 11:06:45 +0100 |
commit | 34c5544ef5d71c01d3ecce2b827452449ca1bf81 (patch) | |
tree | 9e8b56c15a0479a8e201a7e028088931d8210b5a /app | |
parent | 847540f7b75671d750496dba59ac9b03b8bf1340 (diff) | |
download | infrastructure-34c5544ef5d71c01d3ecce2b827452449ca1bf81.tar.gz infrastructure-34c5544ef5d71c01d3ecce2b827452449ca1bf81.zip |
Fix prosody listening
Diffstat (limited to 'app')
-rw-r--r-- | app/jitsi/config/prosody.cfg.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/jitsi/config/prosody.cfg.lua b/app/jitsi/config/prosody.cfg.lua index 65dabf6..7141f8b 100644 --- a/app/jitsi/config/prosody.cfg.lua +++ b/app/jitsi/config/prosody.cfg.lua @@ -48,8 +48,8 @@ cross_domain_bosh = false; consider_bosh_secure = true; component_ports = { } -- it seems we don't need external components for now... https_ports = { } -- we don't need https -http_ports = { 5280 } -c2s_ports = { 5222 } +http_ports = { {{env "NOMAD_PORT_bosh_port" }} } +c2s_ports = { {{env "NOMAD_PORT_xmpp_port" }} } -- https://ssl-config.mozilla.org/#server=haproxy&version=2.1&config=intermediate&openssl=1.1.0g&guideline=5.4 |