bigbluebutton-Github/build/packages-template/bbb-html5/bbb-html5.nginx.static
Gustavo Trott 47997a932a
Add scripts to run html5 from source (#20899)
* Add scripts to run html5 from source

* remove unnecessary sudo
2024-08-12 09:35:45 -03:00

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;
}