Skip to content

How can I promote candidate UDP 80/443? #163

Open
@rasos

Description

@rasos

I am using the standard Jitsi Meet Set-up with nginx. As we are still facing numerous connectivity issues I am experimenting with tunnelling UDP traffic to the videobridge port 4443 directly. However, when ice4j is looking for candidate pairs, I can never see port 80 or 443 UDP. Is there a setting where I could "promote" this viable option?

nginx.conf

# redirect UDP packets directly to videobridge
stream {
# IPv4
  server {
    listen 443 udp;
    proxy_pass 127.0.0.1:4443;
  }
  server {
    listen 443;
    proxy_pass 127.0.0.1:444;
  }
  server {
    listen 80 udp;
    proxy_pass 127.0.0.1:4443;
  }
  server {
    listen 80;
    proxy_pass 127.0.0.1:81;
# IPv6
  }
  server {
    listen [::]:443 udp;
    proxy_pass ip6-localhost:4443;
  }
  server {
    listen [::]:443;
    proxy_pass ip6-localhost:444;
  }
  server {
    listen [::]:80 udp;
    proxy_pass ip6-localhost:4443;
  }
  server {
    listen [::]:80;
    proxy_pass ip6-localhost:81;
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions