When I do the following on a mac:
docker run -p 4443:4443 -e openvidu.publicurl=https://192.168.1.3:4443/ openvidu/basic-videoconference-demo
And use two computers to access https://192.168.1.3:4443, I am able to see the videos from both computers.
But when I do the following on a ubuntu (16.04) server with a public IP addrsss:
docker run -p 4443:4443 -e openvidu.publicurl=https://xxx.xx.xx.xxx:4443/ openvidu/basic-videoconference-demo
And use two computers to access https://xxx.xx.xx.xxx:4443, I am only able to see the local video on each computer. The remove video is blank.
Does the docker image support COTURN?
BTW, using the demo site: https://demos.openvidu.io/basic-videoconference/, I am also able to see the videos from both computers.
Thanks in Advance.