diff --git a/sip-jibri/rootfs/defaults/pjsua.config b/sip-jibri/rootfs/defaults/pjsua.config index 51795e0..2652d03 100644 --- a/sip-jibri/rootfs/defaults/pjsua.config +++ b/sip-jibri/rootfs/defaults/pjsua.config @@ -1,3 +1,5 @@ +{{ $DISABLE_SIP_UDP := .Env.DISABLE_SIP_UDP | default "false" | toBool -}} +{{ $DISABLE_SIP_TCP := .Env.DISABLE_SIP_TCP | default "false" | toBool -}} --capture-dev=7 --playback-dev=8 --video @@ -20,7 +22,6 @@ --add-codec speex --add-codec G722 --add-codec opus ---no-tcp --no-vad --ec-tail 0 --quality 10 @@ -28,6 +29,12 @@ --auto-keyframe=30 --no-stderr --log-file=/config/logs/pjsua.log +{{ if $DISABLE_SIP_UDP -}} +--no-udp +{{ end -}} +{{ if $DISABLE_SIP_TCP -}} +--no-tcp +{{ end -}} {{ if .Env.SIP_ID -}} --id "{{ .Env.SIP_ID }}" {{ end -}}