Update to 2022-12-28 14:00

This commit is contained in:
Daniel Berteaud
2022-12-28 14:00:13 +01:00
parent 7dba8634a5
commit dbf96fa6b2
2 changed files with 101 additions and 118 deletions

View File

@@ -1 +1,20 @@
var subdir = '<!--# echo var="subdir" default="" -->';
var subdomain = '<!--# echo var="subdomain" default="" -->';
if (subdomain) {
subdomain = subdomain.substr(0, subdomain.length - 1).split('.')
.join('_')
.toLowerCase() + '.';
}
// In case of no ssi provided by the webserver, use empty strings
if (subdir.startsWith('<!--')) {
subdir = '';
}
if (subdomain.startsWith('<!--')) {
subdomain = '';
}
var enableJaaS = false;
var config = {{ jitsi_meet_conf | to_nice_json(indent=4) }};