-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add support for max-ssrcs-per-user config #1577
Conversation
jicofo/rootfs/defaults/jicofo.conf
Outdated
@@ -24,6 +24,8 @@ | |||
{{ $XMPP_RECORDER_DOMAIN := .Env.XMPP_RECORDER_DOMAIN | default "recorder.meet.jitsi" -}} | |||
{{ $XMPP_PORT := .Env.XMPP_PORT | default "5222" -}} | |||
{{ $XMPP_SERVER := .Env.XMPP_SERVER | default "xmpp.meet.jitsi" -}} | |||
{{ $MAX-SSRCS-PER-USER := .Env.MAX-SSRCS-PER-USER | default "20" -}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use the underscore _ instead of the hyphen - for the variable name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is 20 the JVB default?
jicofo/rootfs/defaults/jicofo.conf
Outdated
@@ -24,6 +24,8 @@ | |||
{{ $XMPP_RECORDER_DOMAIN := .Env.XMPP_RECORDER_DOMAIN | default "recorder.meet.jitsi" -}} | |||
{{ $XMPP_PORT := .Env.XMPP_PORT | default "5222" -}} | |||
{{ $XMPP_SERVER := .Env.XMPP_SERVER | default "xmpp.meet.jitsi" -}} | |||
{{ $MAX-SSRCS-PER-USER := .Env.MAX-SSRCS-PER-USER | default "20" -}} | |||
{{ $MAX-SSRC-GROUPS-PER-USER := .Env.MAX-SSRC-GROUPS-PER-USER | default $MAX-SSRCS-PER-USER -}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the default in the JVB?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@saghul default value is 20 in jicofo
No description provided.