Hi everyone ~
Problem Description
Internet users use jitsi, and the jvb log shows that they cannot connect to the socket. Does the intranet UDP/10000 need to be mapped to the Internet? If so, what configuration needs to be modified. I can use the nginx stream module to forward the UPD/10000 port to the Internet
JVB Log
[confId=35bc46035fcd6991 conf_name=15@conference.jsitest.soft.cn meeting_id=d7d799d2 epId=6d1cb2de stats_id=Jay-zNT local_ufrag=711d1gso7rdi7 ufrag=711d1gso7rdi7] ConnectivityCheckClient.startCheckForPair#350: Could not start connectivity check: No socket found for 172.18.0.95:10000/udp->10.81.199.197:53988/udp
Nginx configuration
location = /_api/room-info {
#proxy_pass http://prosody/room-info?prefix=$prefix&$args;
proxy_pass http://127.0.0.1:5280/room-info?prefix=$prefix&$args;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
}
# BOSH
location = /http-bind {
#proxy_pass http://$prosody_node/http-bind?prefix=$prefix&$args;
proxy_pass http://127.0.0.1:5280/http-bind?prefix=$prefix&$args;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header Connection "";
}
# xmpp websockets
location = /xmpp-websocket {
proxy_pass http://127.0.0.1:5280/xmpp-websocket?prefix=$prefix&$args;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
tcp_nodelay on;
}
# colibri (JVB) websockets for jvb1
location ~ ^/colibri-ws/default-id/(.*) {
#proxy_pass http://jvb1/colibri-ws/default-id/$1$is_args$args;
proxy_pass http://127.0.0.1:9090/colibri-ws/default-id/$1$is_args$args;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
tcp_nodelay on;
}
Architecture Picture