Skip to content
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
8 changes: 8 additions & 0 deletions apps/livekit/setup-livekit-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,14 @@ rtc:
udp_port: 7882
use_external_ip: true
node_ip: ${EXTERNAL_IP}
# Only advertise the primary public IP. Without this, LiveKit also offers
# candidates for the DO reserved IP (NAT'd through the droplet's anchor IP),
# the VPC IP, and the docker bridge. ICE flaps between the real IP and the
# reserved-IP path, whose NAT drops UDP mid-session — clients die with
# "could not establish pc connection" a minute or two into a stream.
ips:
includes:
- ${EXTERNAL_IP}/32

keys:
${LIVEKIT_API_KEY}: ${LIVEKIT_API_SECRET}
Expand Down
Loading