mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-08-18 16:38:24 +02:00
html5 dev mode
This commit is contained in:
18
mod/nginx/bbb-html5.dev.nginx
Normal file
18
mod/nginx/bbb-html5.dev.nginx
Normal file
@@ -0,0 +1,18 @@
|
||||
# serve locale index from prebuilt static files
|
||||
location = /html5client/locales/ {
|
||||
alias /usr/share/bigbluebutton/html5-client/locales/;
|
||||
autoindex on;
|
||||
autoindex_format json;
|
||||
}
|
||||
|
||||
# running from source (npm start)
|
||||
location /html5client/ {
|
||||
rewrite /html5client/(.*) /$1 break;
|
||||
gzip_static on;
|
||||
proxy_pass http://10.7.7.1:3000/;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header Host $host;
|
||||
}
|
||||
|
Reference in New Issue
Block a user