Upstream update
This commit is contained in:
parent
694cafec4d
commit
72adbfbc71
10
README.md
10
README.md
|
@ -1,5 +1,3 @@
|
||||||
Quick Jibri installer based for Xenial servers.
|
|
||||||
=======
|
|
||||||
# Quick Jibri Installer
|
# Quick Jibri Installer
|
||||||
Bash installer for Jibri on *buntu 16.04 LTS based systems
|
Bash installer for Jibri on *buntu 16.04 LTS based systems
|
||||||
|
|
||||||
|
@ -15,6 +13,14 @@ Bash installer for Jibri on *buntu 16.04 LTS based systems
|
||||||
* Dropbox developer App key & redirect url configured (if you choose to enable Dropbox upload).
|
* Dropbox developer App key & redirect url configured (if you choose to enable Dropbox upload).
|
||||||
* Webcam
|
* Webcam
|
||||||
|
|
||||||
|
## Custom changes
|
||||||
|
* Disable welcome page
|
||||||
|
* Video muted by default
|
||||||
|
* Audio muted but admin
|
||||||
|
* Rodentia static avatar (icon credit: sixsixfive)
|
||||||
|
* Required display name
|
||||||
|
* Language (es)
|
||||||
|
|
||||||
Please note: This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY.
|
Please note: This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY.
|
||||||
|
|
||||||
SwITNet Ltd © - 2018, https://switnet.net/
|
SwITNet Ltd © - 2018, https://switnet.net/
|
||||||
|
|
|
@ -458,6 +458,12 @@ sed -i "s|// startWithVideoMuted: false,|startWithVideoMuted: true,|" $MEET_CONF
|
||||||
#Start with audio muted but admin
|
#Start with audio muted but admin
|
||||||
sed -i "s|// startAudioMuted: 10,|startAudioMuted: 1,|" $MEET_CONF
|
sed -i "s|// startAudioMuted: 10,|startAudioMuted: 1,|" $MEET_CONF
|
||||||
|
|
||||||
|
#Disable welcome page
|
||||||
|
sed -i "s|enableWelcomePage: true|enableWelcomePage: false|" $MEET_CONF
|
||||||
|
|
||||||
|
#Make displayname required
|
||||||
|
sed -i "s|// requireDisplayName: true,|requireDisplayName: true,|" $MEET_CONF
|
||||||
|
|
||||||
#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