jicofo: add optional XMPP_PORT value (#1275)

* jicofo: add optional XMPP_PORT value

* include compose and env example for XMPP_PORT

* extends use of the XMPP_PORT property

* fix compose to use default

* re-commenting XMPP_PORT value

* include XMPP_PORT in compose for all services

* always use $XMPP_PORT, value defaulted in template

* missing JVB setting
This commit is contained in:
Aaron van Meerten
2022-05-02 08:30:48 -05:00
committed by GitHub
parent da0a43a306
commit 95af77896d
9 changed files with 23 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
{{ $LOG_LEVEL := .Env.LOG_LEVEL | default "info" }}
{{ $XMPP_PORT := .Env.XMPP_PORT | default "5222" -}}
-- Prosody Example Configuration File
--
@@ -110,6 +111,9 @@ pidfile = "/config/data/prosody.pid";
c2s_require_encryption = false
-- set c2s port
c2s_ports = { {{ $XMPP_PORT }} } -- Listen on specific c2s port
-- Force certificate authentication for server-to-server connections?
-- This provides ideal security, but requires servers you communicate
-- with to support encryption AND present valid, trusted certificates.