123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- admins = {
- "{{ .Env.JICOFO_AUTH_USER }}@{{ .Env.XMPP_AUTH_DOMAIN }}",
- "{{ .Env.JVB_AUTH_USER }}@{{ .Env.XMPP_AUTH_DOMAIN }}"
- }
- plugin_paths = { "/prosody-plugins/", "/prosody-plugins-custom" }
- http_default_host = "{{ .Env.XMPP_DOMAIN }}"
- {{ $ENABLE_AUTH := .Env.ENABLE_AUTH | default "0" | toBool }}
- {{ $ENABLE_GUEST_DOMAIN := and $ENABLE_AUTH (.Env.ENABLE_GUESTS | default "0" | toBool)}}
- {{ $AUTH_TYPE := .Env.AUTH_TYPE | default "internal" }}
- {{ $JWT_ASAP_KEYSERVER := .Env.JWT_ASAP_KEYSERVER | default "" }}
- {{ $JWT_ALLOW_EMPTY := .Env.JWT_ALLOW_EMPTY | default "0" | toBool }}
- {{ $JWT_AUTH_TYPE := .Env.JWT_AUTH_TYPE | default "token" }}
- {{ $JWT_TOKEN_AUTH_MODULE := .Env.JWT_TOKEN_AUTH_MODULE | default "token_verification" }}
- {{ $ENABLE_LOBBY := .Env.ENABLE_LOBBY | default "0" | toBool }}
- {{ $ENABLE_XMPP_WEBSOCKET := .Env.ENABLE_XMPP_WEBSOCKET | default "1" | toBool }}
- {{ $PUBLIC_URL := .Env.PUBLIC_URL | default "https://localhost:8443" -}}
- {{ if and $ENABLE_AUTH (eq $AUTH_TYPE "jwt") .Env.JWT_ACCEPTED_ISSUERS }}
- asap_accepted_issuers = { "{{ join "\",\"" (splitList "," .Env.JWT_ACCEPTED_ISSUERS) }}" }
- {{ end }}
- {{ if and $ENABLE_AUTH (eq $AUTH_TYPE "jwt") .Env.JWT_ACCEPTED_AUDIENCES }}
- asap_accepted_audiences = { "{{ join "\",\"" (splitList "," .Env.JWT_ACCEPTED_AUDIENCES) }}" }
- {{ end }}
- consider_bosh_secure = true;
- -- Deprecated in 0.12
- -- https://github.com/bjc/prosody/commit/26542811eafd9c708a130272d7b7de77b92712de
- {{ $XMPP_CROSS_DOMAINS := $PUBLIC_URL }}
- {{ $XMPP_CROSS_DOMAIN := .Env.XMPP_CROSS_DOMAIN | default "" }}
- {{ if eq $XMPP_CROSS_DOMAIN "true"}}
- cross_domain_websocket = true
- cross_domain_bosh = true
- {{ else }}
- {{ if not (eq $XMPP_CROSS_DOMAIN "false") }}
- {{ $XMPP_CROSS_DOMAINS = list $PUBLIC_URL (print "https://" .Env.XMPP_DOMAIN) .Env.XMPP_CROSS_DOMAIN | join "," }}
- {{ end }}
- cross_domain_websocket = { "{{ join "\",\"" (splitList "," $XMPP_CROSS_DOMAINS) }}" }
- cross_domain_bosh = { "{{ join "\",\"" (splitList "," $XMPP_CROSS_DOMAINS) }}" }
- {{ end }}
- VirtualHost "{{ .Env.XMPP_DOMAIN }}"
- {{ if $ENABLE_AUTH }}
- {{ if eq $AUTH_TYPE "jwt" }}
- authentication = "{{ $JWT_AUTH_TYPE }}"
- app_id = "{{ .Env.JWT_APP_ID }}"
- app_secret = "{{ .Env.JWT_APP_SECRET }}"
- allow_empty_token = {{ if $JWT_ALLOW_EMPTY }}true{{ else }}false{{ end }}
- {{ if $JWT_ASAP_KEYSERVER }}
- asap_key_server = "{{ .Env.JWT_ASAP_KEYSERVER }}"
- {{ end }}
- {{ else if eq $AUTH_TYPE "ldap" }}
- authentication = "cyrus"
- cyrus_application_name = "xmpp"
- allow_unencrypted_plain_auth = true
- {{ else if eq $AUTH_TYPE "internal" }}
- authentication = "internal_hashed"
- {{ end }}
- {{ else }}
- -- https://github.com/jitsi/docker-jitsi-meet/pull/502#issuecomment-619146339
- {{ if $ENABLE_XMPP_WEBSOCKET }}
- authentication = "token"
- {{ else }}
- authentication = "anonymous"
- {{ end }}
- app_id = ""
- app_secret = ""
- allow_empty_token = true
- {{ end }}
- ssl = {
- key = "/config/certs/{{ .Env.XMPP_DOMAIN }}.key";
- certificate = "/config/certs/{{ .Env.XMPP_DOMAIN }}.crt";
- }
- modules_enabled = {
- "bosh";
- {{ if $ENABLE_XMPP_WEBSOCKET }}
- "websocket";
- "smacks"; -- XEP-0198: Stream Management
- {{ end }}
- "pubsub";
- "ping";
- "speakerstats";
- "conference_duration";
- {{ if $ENABLE_LOBBY }}
- "muc_lobby_rooms";
- {{ end }}
- {{ if .Env.XMPP_MODULES }}
- "{{ join "\";\n\"" (splitList "," .Env.XMPP_MODULES) }}";
- {{ end }}
- {{ if and $ENABLE_AUTH (eq $AUTH_TYPE "ldap") }}
- "auth_cyrus";
- {{end}}
- }
- {{ if $ENABLE_LOBBY }}
- main_muc = "{{ .Env.XMPP_MUC_DOMAIN }}"
- lobby_muc = "lobby.{{ .Env.XMPP_DOMAIN }}"
- {{ if .Env.XMPP_RECORDER_DOMAIN }}
- muc_lobby_whitelist = { "{{ .Env.XMPP_RECORDER_DOMAIN }}" }
- {{ end }}
- {{ end }}
- speakerstats_component = "speakerstats.{{ .Env.XMPP_DOMAIN }}"
- conference_duration_component = "conferenceduration.{{ .Env.XMPP_DOMAIN }}"
- c2s_require_encryption = false
- {{ if $ENABLE_GUEST_DOMAIN }}
- VirtualHost "{{ .Env.XMPP_GUEST_DOMAIN }}"
- -- https://github.com/jitsi/docker-jitsi-meet/pull/502#issuecomment-619146339
- {{ if $ENABLE_XMPP_WEBSOCKET }}
- authentication = "token"
- {{ else }}
- authentication = "anonymous"
- {{ end }}
- app_id = ""
- app_secret = ""
- allow_empty_token = true
- c2s_require_encryption = false
- {{ end }}
- VirtualHost "{{ .Env.XMPP_AUTH_DOMAIN }}"
- ssl = {
- key = "/config/certs/{{ .Env.XMPP_AUTH_DOMAIN }}.key";
- certificate = "/config/certs/{{ .Env.XMPP_AUTH_DOMAIN }}.crt";
- }
- authentication = "internal_hashed"
- {{ if .Env.XMPP_RECORDER_DOMAIN }}
- VirtualHost "{{ .Env.XMPP_RECORDER_DOMAIN }}"
- modules_enabled = {
- "ping";
- }
- authentication = "internal_hashed"
- {{ end }}
- Component "{{ .Env.XMPP_INTERNAL_MUC_DOMAIN }}" "muc"
- storage = "memory"
- modules_enabled = {
- "ping";
- {{ if .Env.XMPP_INTERNAL_MUC_MODULES }}
- "{{ join "\";\n\"" (splitList "," .Env.XMPP_INTERNAL_MUC_MODULES) }}";
- {{ end }}
- }
- restrict_room_creation = true
- muc_room_locking = false
- muc_room_default_public_jids = true
- Component "{{ .Env.XMPP_MUC_DOMAIN }}" "muc"
- storage = "memory"
- modules_enabled = {
- "muc_meeting_id";
- {{ if .Env.XMPP_MUC_MODULES }}
- "{{ join "\";\n\"" (splitList "," .Env.XMPP_MUC_MODULES) }}";
- {{ end }}
- {{ if and $ENABLE_AUTH (eq $AUTH_TYPE "jwt") }}
- "{{ $JWT_TOKEN_AUTH_MODULE }}";
- {{ end }}
- }
- muc_room_cache_size = 1000
- muc_room_locking = false
- muc_room_default_public_jids = true
- Component "focus.{{ .Env.XMPP_DOMAIN }}" "client_proxy"
- target_address = "{{ .Env.JICOFO_AUTH_USER }}@{{ .Env.XMPP_AUTH_DOMAIN }}"
- Component "speakerstats.{{ .Env.XMPP_DOMAIN }}" "speakerstats_component"
- muc_component = "{{ .Env.XMPP_MUC_DOMAIN }}"
- Component "conferenceduration.{{ .Env.XMPP_DOMAIN }}" "conference_duration_component"
- muc_component = "{{ .Env.XMPP_MUC_DOMAIN }}"
- {{ if $ENABLE_LOBBY }}
- Component "lobby.{{ .Env.XMPP_DOMAIN }}" "muc"
- storage = "memory"
- restrict_room_creation = true
- muc_room_locking = false
- muc_room_default_public_jids = true
- {{ end }}
|