mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-05-19 15:00:51 +02:00
quite some features (recording, SIP, transcription, etc.) are not working yet, but a milestone where it should finally take a commit
14 lines
320 B
Nginx Configuration File
14 lines
320 B
Nginx Configuration File
# running in production (static assets)
|
|
location /html5client {
|
|
gzip_static on;
|
|
alias /usr/share/bigbluebutton/html5-client/;
|
|
index index.html;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
location /html5client/locales {
|
|
alias /usr/share/bigbluebutton/html5-client/locales;
|
|
autoindex on;
|
|
autoindex_format json;
|
|
}
|