Skip to content

Commit a88dd8b

Browse files
committed
feat(jvb) default to using dcSCTP
1 parent d2c26aa commit a88dd8b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ services:
437437
- JVB_OCTO_REGION
438438
- JVB_OCTO_RELAY_ID
439439
- JVB_REQUIRE_VALID_ADDRESS
440+
- JVB_USE_USRSCTP
440441
- JVB_WS_DOMAIN
441442
- JVB_WS_SERVER_ID
442443
- JVB_WS_TLS

jvb/rootfs/defaults/jvb.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
{{ $JVB_XMPP_SERVERS := splitList "," $JVB_XMPP_SERVER -}}
2222
{{ $PUBLIC_URL_DOMAIN := .Env.PUBLIC_URL | default "https://localhost:8443" | trimPrefix "https://" | trimSuffix "/" -}}
2323
{{ $SHUTDOWN_REST_ENABLED := .Env.SHUTDOWN_REST_ENABLED | default "false" | toBool -}}
24+
{{ $USE_USRSCTP := .Env.JVB_USE_USRSCTP | default "false" | toBool -}}
2425
{{ $WS_DOMAIN := .Env.JVB_WS_DOMAIN | default $PUBLIC_URL_DOMAIN -}}
2526
{{ $WS_SERVER_ID := .Env.JVB_WS_SERVER_ID | default .Env.JVB_WS_SERVER_ID_FALLBACK | default "default" -}}
2627
{{ $WS_TLS := .Env.JVB_WS_TLS | default "1" | toBool -}}
@@ -89,6 +90,7 @@ videobridge {
8990
}
9091
sctp {
9192
enabled = {{ $ENABLE_SCTP }}
93+
use-usrsctp = {{ $USE_USRSCTP }}
9294
}
9395
stats {
9496
enabled = true

0 commit comments

Comments
 (0)