Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

greenlight not fining/forwarding assets #5912

Open
Schaggo opened this issue Aug 6, 2024 · 0 comments
Open

greenlight not fining/forwarding assets #5912

Schaggo opened this issue Aug 6, 2024 · 0 comments

Comments

@Schaggo
Copy link

Schaggo commented Aug 6, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant