bigbluebutton / greenlight

A really simple end-user interface for your BigBlueButton server.
GNU Lesser General Public License v3.0
789 stars 3.8k forks source link

greenlight not fining/forwarding assets #5912

Open Schaggo opened 1 month ago

Schaggo commented 1 month ago

I just installed a fresh bbb 2.7 with greenlight on a local network. Navigating to my domain results in "Welcome to Bigbluebutton" but the console indicates the server does not forward any assets except the html

"Failed to load resource: the server responded with a status of 404 (Not Found)"

The /bigbluebutton nginx is configured to forward domain/gl to 127.0.0.1:5050

´ /etc/nginx/sites-available/bigbluebutton
server { listen 80; listen [::]:80; server_name bbb.ophioncoms.com;

# Redirect all HTTP traffic to HTTPS
return 301 https://$host$request_uri;

}

server { listen 443 ssl; listen [::]:443 ssl; server_name bbb.ophioncoms.com;

ssl_certificate /etc/ssl/certs/cert.cer;
ssl_certificate_key /etc/ssl/private/key.key;

access_log /var/log/nginx/bigbluebutton.access.log;

# This variable is used instead of $scheme by bigbluebutton nginx include
# files, so $scheme can be overridden in reverse-proxy configurations.
set $real_scheme https;

# BigBlueButton assets and static content.
location / {
    root /var/www/bigbluebutton/assets;
    index index.html index.htm;
    expires 1m;
}

# Forward /gl to Greenlight container
location /gl {
    proxy_pass http://127.0.0.1:5050;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
}

# Include specific rules for record and playback
include /etc/bigbluebutton/nginx/*.nginx; # an overriding set of files, possibly present

any idea what might be going on