After joining from another PC, participant shows up but video doesn’t, audio not working as well.
I am getting this w arning in browser console:
StreamManager of Stream str_CAM_Bj7r_con_NNH9XlWve5 (Subscriber) did not trigger “streamPlaying” event in 4000 ms
This is in docker-compose.yml
openvidu:
ports:
- ‘8082:443’
image: ‘openvidu/openvidu-dev:2.27.0’
env_file:
- ./openvidu.env
This is env file:
HTTPS_PORT=443
OPENVIDU_USERNAME=OPENVIDUAPP
OPENVIDU_SECRET=MY_SECRET
FORCE_PLAIN_HTTP=false
DOMAIN_OR_PUBLIC_IP=192.168.100.99
this is nginx:
http {
server {
listen 80;
listen 443 ssl;
ssl_certificate /etc/ssl/certs/self-signed.crt;
ssl_certificate_key /etc/ssl/private/self-signed.key;
location /openvidu {
proxy_pass http://openvidu:443/openvidu;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
}