diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 611be71..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -# These are supported funding model platforms - -custom: ["https://www.paypal.me/switnet", switnet.net] diff --git a/README.md b/README.md index 5a041c3..d231641 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Login into your clean server, clone git repository and run the installer, ``` git clone https://github.com/switnet-ltd/quick-jibri-installer cd quick-jibri-installer -sudo bash quick_jibri_installer.sh +bash quick-jibri-installer.sh ``` ![QJI - Setup](https://raw.githubusercontent.com/wiki/switnet-ltd/quick-jibri-installer/images/qji-diagram-setup.png) diff --git a/mode/grid/selenium-grid-docker.sh b/mode/grid/selenium-grid-docker.sh index 9d96a6d..6acb471 100644 --- a/mode/grid/selenium-grid-docker.sh +++ b/mode/grid/selenium-grid-docker.sh @@ -44,11 +44,11 @@ cd /opt git clone https://github.com/jitsi/jitsi-meet-torture cd jitsi-meet-torture/resources if [ -f FourPeople_1280x720_30.y4m ] ; then -echo "FourPeople_1280x720_30.y4m exists" + echo "FourPeople_1280x720_30.y4m exists" else -echo "FourPeople_1280x720_30.y4m doesn't exists, getting a copy..." -wget -c https://media.xiph.org/video/derf/y4m/FourPeople_1280x720_60.y4m -cp FourPeople_1280x720_60.y4m FourPeople_1280x720_30.y4m + echo "FourPeople_1280x720_30.y4m doesn't exists, getting a copy..." + wget -c https://media.xiph.org/video/derf/y4m/FourPeople_1280x720_60.y4m + cp FourPeople_1280x720_60.y4m FourPeople_1280x720_30.y4m fi cd .. diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index 9d862b6..5502167 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -263,7 +263,7 @@ do This is an unsupported use, as it will likely BREAK YOUR SYSTEM, so please don't." exit else - echo -e " > No standard desktop environment '$de' for user oriented porpuse detected, continuing...\n" + echo -e " > No standard desktop environment '$de' for user oriented porpuse detected, continuing..." fi done @@ -1084,13 +1084,8 @@ if [ "$ENABLE_SA" = "yes" ] && [ -f $WS_CONF ]; then fi #nginx -tlsv1/1.1 if [ "$DROP_TLS1" = "yes" ];then - echo -e "\nDropping TLSv1/1.1 in favor of v1.3\n" - sed -i "s|TLSv1 TLSv1.1|TLSv1.3|" /etc/nginx/nginx.conf - #sed -i "s|TLSv1 TLSv1.1|TLSv1.3|" $WS_CONF -elif [ "$DROP_TLS1" = "yes" ];then - echo -e "\nOnly dropping TLSv1/1.1\n" + echo -e "\nDropping TLSv1/1.1\n" sed -i "s|TLSv1 TLSv1.1||" /etc/nginx/nginx.conf - sed -i "s| TLSv1.3||" $WS_CONF elif [ "$DROP_TLS1" = "no" ];then echo -e "\nNo TLSv1/1.1 dropping was done.\n" else