forked from switnet/quick-jibri-installer
5.4.2
- Fix php-redis version on jra_nextcloud.sh - Set pre-join screen by default, since it improves YouTube autoplay capabilities.
This commit is contained in:
commit
b8dd9e0e4c
|
@ -160,12 +160,12 @@ apt-get install -y \
|
|||
php$PHPVER-ldap \
|
||||
php$PHPVER-mbstring \
|
||||
php$PHPVER-pgsql \
|
||||
php$PHPVER-redis \
|
||||
php$PHPVER-soap \
|
||||
php$PHPVER-xml \
|
||||
php$PHPVER-xmlrpc \
|
||||
php$PHPVER-zip \
|
||||
php-imagick \
|
||||
php-redis \
|
||||
redis-server \
|
||||
unzip
|
||||
|
||||
|
@ -386,7 +386,7 @@ if [ "$ENABLE_HSTS" = "yes" ]; then
|
|||
sed -i "s|# add_header Strict-Transport-Security|add_header Strict-Transport-Security|g" $NC_NGINX_CONF
|
||||
fi
|
||||
|
||||
if [ "$DISTRO_RELEASE" != "xenial" ] && [ -z $PREAD_PROXY ]; then
|
||||
if [ "$DISTRO_RELEASE" != "xenial" ] && [ ! -z $PREAD_PROXY ]; then
|
||||
echo "
|
||||
Setting up Nextcloud domain on Jitsi Meet turn proxy
|
||||
"
|
||||
|
|
|
@ -1071,6 +1071,10 @@ fi
|
|||
#Set displayname as not required since jibri can't set it up.
|
||||
sed -i "s|// requireDisplayName: true,|requireDisplayName: false,|" $MEET_CONF
|
||||
|
||||
#Add pre-join screen by default, since it improves YouTube autoplay capabilities
|
||||
#pre-join screen by itself don't require autorization by moderator, don't confuse with lobby which does.
|
||||
sed -i "s|// prejoinPageEnabled:.*|// prejoinPageEnabled: true,|" $MEET_CONF
|
||||
|
||||
#Set HD resolution and widescreen format
|
||||
sed -i "/Enable \/ disable simulcast support/i \/\/ Start QJI - Set resolution and widescreen format" $MEET_CONF
|
||||
sed -i "/Enable \/ disable simulcast support/i \ \ \ \ resolution: 720," $MEET_CONF
|
||||
|
|
Loading…
Reference in New Issue