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:
committed by
GitHub
parent
da0a43a306
commit
95af77896d
@@ -4,6 +4,7 @@
|
||||
{{ $ENABLE_RECORDING := .Env.ENABLE_RECORDING | default "0" | toBool }}
|
||||
{{ $ENABLE_OCTO := .Env.ENABLE_OCTO | default "0" | toBool }}
|
||||
{{ $ENABLE_AUTO_LOGIN := .Env.ENABLE_AUTO_LOGIN | default "1" | toBool }}
|
||||
{{ $XMPP_PORT := .Env.XMPP_PORT | default "5222" -}}
|
||||
|
||||
jicofo {
|
||||
{{ if $ENABLE_AUTH }}
|
||||
@@ -134,6 +135,7 @@ jicofo {
|
||||
client {
|
||||
enabled = true
|
||||
hostname = "{{ .Env.XMPP_SERVER }}"
|
||||
port = "{{ $XMPP_PORT }}"
|
||||
domain = "{{ .Env.XMPP_AUTH_DOMAIN }}"
|
||||
username = "{{ .Env.JICOFO_AUTH_USER }}"
|
||||
password = "{{ .Env.JICOFO_AUTH_PASSWORD }}"
|
||||
|
||||
Reference in New Issue
Block a user