mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-08-14 14:58:31 +02:00
add recording feature into setup scripts
This commit is contained in:
@ -45,6 +45,11 @@ while [[ -z "$DOMAIN" ]]; do
|
||||
read -p "Please enter the domain name: " DOMAIN
|
||||
done
|
||||
|
||||
recording=""
|
||||
while [[ ! $recording =~ ^(y|n)$ ]]; do
|
||||
read -p "Should recording feature be included? (y/n): " recording
|
||||
done
|
||||
|
||||
ip_correct=""
|
||||
while [[ ! $ip_correct =~ ^(y|n)$ ]]; do
|
||||
read -p "Is $EXTERNAL_IPv4 your external IPv4 address? (y/n): " ip_correct
|
||||
@ -92,6 +97,11 @@ then
|
||||
sed -i "s/ENABLE_HTTPS_PROXY.*/#ENABLE_HTTPS_PROXY=true/" .env
|
||||
fi
|
||||
|
||||
if [ ! "$recording" == "y" ]
|
||||
then
|
||||
sed -i "s/ENABLE_RECORDING.*/#ENABLE_RECORDING=true/" .env
|
||||
fi
|
||||
|
||||
if [ "$coturn" == "y" ]
|
||||
then
|
||||
sed -i "s/.*TURN_SERVER=.*/TURN_SERVER=turns:$DOMAIN:465?transport=tcp/" .env
|
||||
|
Reference in New Issue
Block a user