2024-08-10 01:58:44 +08:00
|
|
|
# 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;
|
|
|
|
}
|
2024-08-12 20:35:45 +08:00
|
|
|
|
|
|
|
location /html5client/locales {
|
2024-09-26 00:39:04 +08:00
|
|
|
alias /usr/share/bigbluebutton/html5-client/locales;
|
2024-08-12 20:35:45 +08:00
|
|
|
autoindex on;
|
|
|
|
autoindex_format json;
|
|
|
|
}
|