Add secure rooms
As title says, with this you get asked about enabling the secure rooms feature, enjoy.
This commit is contained in:
parent
4dccc90ff8
commit
ea14c8dab7
|
@ -259,7 +259,7 @@ prosodyctl register recorder recorder.$DOMAIN $JB_REC_PASS
|
||||||
## JICOFO
|
## JICOFO
|
||||||
# /etc/jitsi/jicofo/sip-communicator.properties
|
# /etc/jitsi/jicofo/sip-communicator.properties
|
||||||
cat << BREWERY >> $JICOFO_SIP
|
cat << BREWERY >> $JICOFO_SIP
|
||||||
#org.jitsi.jicofo.auth.URL=XMPP:$DOMAIN
|
org.jitsi.jicofo.auth.URL=XMPP:$DOMAIN
|
||||||
org.jitsi.jicofo.jibri.BREWERY=$JibriBrewery@internal.auth.$DOMAIN
|
org.jitsi.jicofo.jibri.BREWERY=$JibriBrewery@internal.auth.$DOMAIN
|
||||||
org.jitsi.jicofo.jibri.PENDING_TIMEOUT=90
|
org.jitsi.jicofo.jibri.PENDING_TIMEOUT=90
|
||||||
BREWERY
|
BREWERY
|
||||||
|
@ -406,6 +406,25 @@ else
|
||||||
-> https://github.com/switnet-ltd/quick-jibri-installer/issues"
|
-> https://github.com/switnet-ltd/quick-jibri-installer/issues"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#Enable secure rooms?
|
||||||
|
while [[ $ENABLE_SC != yes && $ENABLE_SC != no ]]
|
||||||
|
do
|
||||||
|
read -p "Do you want to enable secure rooms?: (yes or no)"$'\n' -r ENABLE_SC
|
||||||
|
if [ $ENABLE_SC = no ]; then
|
||||||
|
echo "Secure rooms won't be enable"
|
||||||
|
elif [ $ENABLE_SC = yes ]; then
|
||||||
|
echo "Secure rooms are being enable"
|
||||||
|
cat << P_SR >> $PROSODY_FILE
|
||||||
|
VirtualHost "$DOMAIN"
|
||||||
|
authentication = "internal_plain"
|
||||||
|
|
||||||
|
VirtualHost "guest.$DOMAIN"
|
||||||
|
authentication = "anonymous"
|
||||||
|
c2s_require_encryption = false
|
||||||
|
P_SR
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
#Enable jibri services
|
#Enable jibri services
|
||||||
systemctl enable jibri
|
systemctl enable jibri
|
||||||
systemctl enable jibri-xorg
|
systemctl enable jibri-xorg
|
||||||
|
|
Loading…
Reference in New Issue