488d78742d
Closes https://github.com/bigbluebutton/bigbluebutton/issues/21161 As suggested by @danimo the client files for bbb-html5 are not variable/dynamic content and are a better fit for /usr/share than for /var/bigbluebutton (where they'd also be in the way of recording files)
16 lines
387 B
Plaintext
16 lines
387 B
Plaintext
# running from source (npm start)
|
|
location /html5client/ {
|
|
gzip_static on;
|
|
proxy_pass http://localhost:3000/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
location /html5client/locales {
|
|
alias /usr/share/bigbluebutton/html5-client/locales;
|
|
autoindex on;
|
|
autoindex_format json;
|
|
}
|