-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sh
46 lines (41 loc) · 1.74 KB
/
config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Jitsi domain
export JITSI_FQDN="jitsi.nordeck.corp"
# The password of jibri@auth.$JITSI_FQDN account of Prosody
# https://github.com/nordeck/bullseye-lxc-jitsi/blob/main/machines/nordeck-sip-template/etc/jitsi/jibri/jibri.conf#L57
export JIBRI_PASSWD="my-jibri-password"
# The password of sip@sip.$JITSI_FQDN account of Prosody
# https://github.com/nordeck/bullseye-lxc-jitsi/blob/main/machines/nordeck-sip-template/etc/jitsi/jibri/jibri.conf#L63
export JIBRI_SIP_PASSWD="my-sip-password"
# If this is set as true, builder tools will be removed after building
# v4l2loopback module. Updating kernel may break the system in this case since
# the module will not match the new kernel anymore.
export RUN_REMOVE_BUILDER=false
# Globals
export ARCH=$(dpkg --print-architecture)
export DEBIAN_FRONTEND=noninteractive
export FILES="$BASEDIR/files"
export PACKAGES="$BASEDIR/packages"
export ENV="$BASEDIR/environment"
# ------------------------------------------------------------------------------
# ENVIRONMENT DEPENDENT FILES
# ------------------------------------------------------------------------------
# Update the files which are inside the environment folder according to your
# environment.
#
# - env.sidecar
#
# Sidecar env file. The default one is OK if you don't have a specific
# requirement.
#
#
# - sidecar.key and sidecar.pem
#
# These key pairs should match each other for jitsi-component-selector and
# jitsi-component-sidecar. Otherwise they cannot communicate.
# https://github.com/nordeck/bullseye-lxc-jitsi/blob/main/installer-sub-scripts/nordeck-jitsi/311-component-selector.sh#L177-L191
#
#
# - jms-CA.crt
#
# CA certificate if JMS uses a self-signed certificate
# ------------------------------------------------------------------------------