| Server IP : 104.129.129.72 / Your IP : 216.73.216.229 Web Server : LiteSpeed System : Linux 123answers 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : answe8064 ( 1002) PHP Version : 8.2.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /opt/installer/apps/ |
Upload File : |
#!/bin/bash
if [ -f "include/startup.sh" ]; then
. include/startup.sh
elif [ -f "../include/startup.sh" ]; then
. ../include/startup.sh
fi
echo "Setting HostName" | log
hostnamectl set-hostname jitsi.${CWM_DOMAIN}
echo "Adding FW rules" | log
ufw allow 10000
ufw allow 3478
ufw allow 5349
echo "Downloading Jitsi and adding key" | log
apt update | log
installPackage apt-transport-https
waitOrStop 0 "Failed to install apt-transport-https"
echo 'deb https://download.jitsi.org stable/' | tee /etc/apt/sources.list.d/jitsi-stable.list
curlDownload https://download.jitsi.org/jitsi-key.gpg.key
waitOrStop 0 "File not downloaded from official source"
apt-key add jitsi-key.gpg.key
apt update | log
echo "Installing Jitsi" | log
export DEBIAN_FRONTEND="noninteractive"
echo "jitsi-videobridge jitsi-videobridge/jvb-hostname string jitsi.${CWM_DOMAIN}" | debconf-set-selections
echo "jitsi-meet jitsi-meet/cert-choice select Self-signed certificate will be generated" | debconf-set-selections
installPackage jitsi-meet
echo "${ADMINEMAIL}" | /usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh
echo "Adding descriptions" | log
descriptionAppend "Jitsi Web UI: https://jitsi.${CWM_DOMAIN}"
descriptionAppend " "
tagScript success
exit 0