alangecker / bigbluebutton-docker

merged into https://github.com/bigbluebutton/docker
GNU Lesser General Public License v3.0
99 stars 33 forks source link

No Video or Screensharing - Media Server Offline 2001 - Audio and presentation works #74

Closed Xaver2k closed 3 years ago

Xaver2k commented 3 years ago

Hi, i finally got the bbb-docker kind of working, but Video Cam and Screensharing is not working and shows "Media server is offline. Please try again later (error 2001)"

My Server is running Plesk Obsidian Version 18.0.30 and the Docker extension, i used Docker from SSH to set everything up.

At the beginning even Audio was not working, but i got it working with the correct firewall rules to allow traffic on all ports from 10.7.7.0/24. I Already tried to Allow all Incoming and Forwarding traffic without success. And i needed to add following additional NGINX directive:

location ^~ / {
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_set_header Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

    proxy_set_header X-Frame-Options SAMEORIGIN;
    proxy_pass http://SERVER_PUBLIC_IPV4:8080;
}

IPv6 is not working/setup on the server, mandatory or do i need to disable it somewhere?

Any suggestions here??

Thanks in advance

Xaver2k commented 3 years ago

Duplicate of #75