prosody: recording metadata module (#1734)
* prosody: jibri_session module for recording metadata * prosody: flag for recording metadata module
This commit is contained in:
committed by
GitHub
parent
36b2e1662d
commit
b0675c0e24
@@ -269,6 +269,7 @@ services:
|
|||||||
- PROSODY_RESERVATION_ENABLED
|
- PROSODY_RESERVATION_ENABLED
|
||||||
- PROSODY_RESERVATION_REST_BASE_URL
|
- PROSODY_RESERVATION_REST_BASE_URL
|
||||||
- PROSODY_ENABLE_RATE_LIMITS
|
- PROSODY_ENABLE_RATE_LIMITS
|
||||||
|
- PROSODY_ENABLE_RECORDING_METADATA
|
||||||
- PROSODY_ENABLE_STANZA_COUNTS
|
- PROSODY_ENABLE_STANZA_COUNTS
|
||||||
- PROSODY_ENABLE_S2S
|
- PROSODY_ENABLE_S2S
|
||||||
- PROSODY_ENABLE_METRICS
|
- PROSODY_ENABLE_METRICS
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
{{ $PROSODY_AUTH_TYPE := .Env.PROSODY_AUTH_TYPE | default $AUTH_TYPE -}}
|
{{ $PROSODY_AUTH_TYPE := .Env.PROSODY_AUTH_TYPE | default $AUTH_TYPE -}}
|
||||||
{{ $ENABLE_GUEST_DOMAIN := and $ENABLE_AUTH (.Env.ENABLE_GUESTS | default "0" | toBool) -}}
|
{{ $ENABLE_GUEST_DOMAIN := and $ENABLE_AUTH (.Env.ENABLE_GUESTS | default "0" | toBool) -}}
|
||||||
{{ $ENABLE_RECORDING := .Env.ENABLE_RECORDING | default "0" | toBool -}}
|
{{ $ENABLE_RECORDING := .Env.ENABLE_RECORDING | default "0" | toBool -}}
|
||||||
|
{{ $ENABLE_RECORDING_METADATA := .Env.PROSODY_ENABLE_RECORDING_METADATA | default "1" | toBool -}}
|
||||||
{{ $ENABLE_TRANSCRIPTIONS := .Env.ENABLE_TRANSCRIPTIONS | default "0" | toBool -}}
|
{{ $ENABLE_TRANSCRIPTIONS := .Env.ENABLE_TRANSCRIPTIONS | default "0" | toBool -}}
|
||||||
{{ $JIBRI_XMPP_USER := .Env.JIBRI_XMPP_USER | default "jibri" -}}
|
{{ $JIBRI_XMPP_USER := .Env.JIBRI_XMPP_USER | default "jibri" -}}
|
||||||
{{ $JIGASI_XMPP_USER := .Env.JIGASI_XMPP_USER | default "jigasi" -}}
|
{{ $JIGASI_XMPP_USER := .Env.JIGASI_XMPP_USER | default "jigasi" -}}
|
||||||
@@ -228,6 +229,10 @@ VirtualHost "{{ $XMPP_DOMAIN }}"
|
|||||||
{{ if $ENABLE_VISITORS }}
|
{{ if $ENABLE_VISITORS }}
|
||||||
"visitors";
|
"visitors";
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{- if and $ENABLE_RECORDING_METADATA $ENABLE_AUTH (eq $PROSODY_AUTH_TYPE "jwt") $ENABLE_RECORDING }}
|
||||||
|
"jibri_session";
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main_muc = "{{ $XMPP_MUC_DOMAIN }}"
|
main_muc = "{{ $XMPP_MUC_DOMAIN }}"
|
||||||
@@ -291,6 +296,9 @@ VirtualHost "{{ $XMPP_AUTH_DOMAIN }}"
|
|||||||
}
|
}
|
||||||
modules_enabled = {
|
modules_enabled = {
|
||||||
"limits_exception";
|
"limits_exception";
|
||||||
|
{{- if and $ENABLE_RECORDING_METADATA $ENABLE_AUTH (eq $PROSODY_AUTH_TYPE "jwt") $ENABLE_RECORDING }}
|
||||||
|
"jibri_session";
|
||||||
|
{{- end }}
|
||||||
}
|
}
|
||||||
authentication = "internal_hashed"
|
authentication = "internal_hashed"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user