forked from switnet/quick-jibri-installer
Dropbox no longer requirement for local recording
Removing dropbox login for local recording, yay!
This commit is contained in:
parent
4a3cddcd4b
commit
5cfbacbfd5
|
@ -6,7 +6,6 @@ Bash installer for Jibri on **\*buntu LTS** based systems using **nginx** as def
|
||||||
* Valid domain with DNS record, **mandatory** for SSL certs via Let's Encrypt.
|
* Valid domain with DNS record, **mandatory** for SSL certs via Let's Encrypt.
|
||||||
* Ports open for ACME (SSL) interaction & validation.
|
* Ports open for ACME (SSL) interaction & validation.
|
||||||
* Minimum recommended for video recording: 8 GB RAM / 2 Cores.
|
* Minimum recommended for video recording: 8 GB RAM / 2 Cores.
|
||||||
* Dropbox developer App key & redirect url configured (if you choose to enable Dropbox upload).
|
|
||||||
* Webcam
|
* Webcam
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
|
@ -309,16 +309,16 @@ elif [ $ENABLE_SSL = yes ]; then
|
||||||
echo "SSL will be enabled."
|
echo "SSL will be enabled."
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
#Dropbox
|
#Dropbox -- no longer requirement for localrecording
|
||||||
while [[ $ENABLE_DB != yes && $ENABLE_DB != no ]]
|
#while [[ $ENABLE_DB != yes && $ENABLE_DB != no ]]
|
||||||
do
|
#do
|
||||||
read -p "> Do you want to setup the Dropbox feature now: (yes or no)"$'\n' -r ENABLE_DB
|
#read -p "> Do you want to setup the Dropbox feature now: (yes or no)"$'\n' -r ENABLE_DB
|
||||||
if [ $ENABLE_DB = no ]; then
|
#if [ $ENABLE_DB = no ]; then
|
||||||
echo "Dropbox won't be enable"
|
# echo "Dropbox won't be enable"
|
||||||
elif [ $ENABLE_DB = yes ]; then
|
#elif [ $ENABLE_DB = yes ]; then
|
||||||
read -p "Please set your Drobbox App key: "$'\n' -r DB_CID
|
# read -p "Please set your Drobbox App key: "$'\n' -r DB_CID
|
||||||
fi
|
#fi
|
||||||
done
|
#done
|
||||||
#Brandless Mode
|
#Brandless Mode
|
||||||
while [[ $ENABLE_BLESSM != yes && $ENABLE_BLESSM != no ]]
|
while [[ $ENABLE_BLESSM != yes && $ENABLE_BLESSM != no ]]
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in New Issue