47997a932a
* Add scripts to run html5 from source * remove unnecessary sudo
14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
# running in production (static assets)
|
|
location /html5client {
|
|
gzip_static on;
|
|
alias /var/bigbluebutton/html5-client/;
|
|
index index.html;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
location /html5client/locales {
|
|
alias /var/bigbluebutton/html5-client/locales;
|
|
autoindex on;
|
|
autoindex_format json;
|
|
}
|