You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
}
The text was updated successfully, but these errors were encountered:
rasos
changed the title
How can I promote peer candidate UDP 80?
How can I promote candidate UDP 80/443?
Dec 16, 2018
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
The text was updated successfully, but these errors were encountered: