Skip to content
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

feat(docker): Adds some docs about udp buffers. #537

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/devops-guide/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,13 @@ If your setup does not have access to the Internet you'll need to disable STUN o
JVB_DISABLE_STUN=true
```

### Adjust UDP buffers

If you are experiencing issues with UDP traffic, like synchronization issues, skipping frames and similar, or if you expect a high traffic and big conferences, you might want to adjust the UDP buffer sizes.
You need to do that on the host system, that hosts the jvb container.
To do so you can get this [sysctl config file](https://github.com/jitsi/jitsi-videobridge/blob/master/config/20-jvb-udp-buffers.conf) and save it in `/etc/sysctl.d` and load it via: `sysctl --system`.


## Accessing server logs

The default bahavior of `docker-jitsi-meet` is to log to `stdout`.
Expand Down