forked from switnet/quick-jibri-installer
Disable localrecording toolbar
This commit is contained in:
parent
8cc13b91b9
commit
cc76399416
|
@ -148,12 +148,10 @@ else
|
||||||
sed -i "s|https://jitsi.org/live|$support|g" $INT_CONF
|
sed -i "s|https://jitsi.org/live|$support|g" $INT_CONF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf "${Purple}========== Re-enable Localrecording ==========${Color_Off}\n"
|
printf "${Purple}========== Disable Localrecording ==========${Color_Off}\n"
|
||||||
if [ "$LOC_REC" = "on" ]; then
|
if [ "$LOC_REC" != "on" ]; then
|
||||||
echo "Setting LocalRecording..."
|
echo "Removing localrecording..."
|
||||||
sed -i "s|'tileview'|'tileview', 'localrecording'|" $INT_CONF
|
sed -i "s|'localrecording',||" $INT_CONF
|
||||||
else
|
|
||||||
echo "Moving on..."
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf "${Purple}========== Disable Blur my background ==========${Color_Off}\n"
|
printf "${Purple}========== Disable Blur my background ==========${Color_Off}\n"
|
||||||
|
|
|
@ -175,7 +175,6 @@ systemctl restart php$PHPVER-fpm.service
|
||||||
#--------------------------------------------------
|
#--------------------------------------------------
|
||||||
|
|
||||||
echo -e "\n---- Creating the PgSQL DB & User ----"
|
echo -e "\n---- Creating the PgSQL DB & User ----"
|
||||||
|
|
||||||
sudo -u postgres psql <<DB
|
sudo -u postgres psql <<DB
|
||||||
CREATE DATABASE nextcloud_db;
|
CREATE DATABASE nextcloud_db;
|
||||||
CREATE USER ${NC_DB_USER} WITH ENCRYPTED PASSWORD '${NC_DB_PASSWD}';
|
CREATE USER ${NC_DB_USER} WITH ENCRYPTED PASSWORD '${NC_DB_PASSWD}';
|
||||||
|
@ -347,7 +346,7 @@ if [ "$ENABLE_HSTS" = "yes" ]; then
|
||||||
sed -i "s|# add_header Strict-Transport-Security|add_header Strict-Transport-Security|g" $NC_NGINX_CONF
|
sed -i "s|# add_header Strict-Transport-Security|add_header Strict-Transport-Security|g" $NC_NGINX_CONF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! "$DISTRO_RELEASE" = "xenial" ] && [ -z $PREAD_PROXY ]; then
|
if [ "$DISTRO_RELEASE" != "xenial" ] && [ -z $PREAD_PROXY ]; then
|
||||||
echo "
|
echo "
|
||||||
Setting up Nextcloud domain on Jitsi Meet turn proxy
|
Setting up Nextcloud domain on Jitsi Meet turn proxy
|
||||||
"
|
"
|
||||||
|
|
Loading…
Reference in New Issue