Skip to content

Commit 261577c

Browse files
committed
web: stop using the default config file
It should be empty and we set all settings. This will reduce the size fo the file and make it less confusing to inspect on a running system.
1 parent ed6ef89 commit 261577c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/rootfs/defaults/system-config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
{{ $XMPP_MUC_DOMAIN := .Env.XMPP_MUC_DOMAIN | default "muc.meet.jitsi" -}}
1212
{{ $XMPP_MUC_DOMAIN_PREFIX := (split "." $XMPP_MUC_DOMAIN)._0 -}}
1313

14-
// Begin default config overrides.
14+
// Jitsi Meet configuration.
15+
var config = {};
1516

1617
if (!config.hasOwnProperty('hosts')) config.hosts = {};
1718

web/rootfs/etc/cont-init.d/10-config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ tpl /defaults/ssl.conf > /config/nginx/ssl.conf
7575

7676
tpl /defaults/default > /config/nginx/site-confs/default
7777

78-
cp /defaults/config.js /config/config.js
7978
tpl /defaults/system-config.js >> /config/config.js
8079
tpl /defaults/settings-config.js >> /config/config.js
8180
if [[ -f /config/custom-config.js ]]; then

0 commit comments

Comments
 (0)