2016-11-05 16:42:19 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# .---. . .
|
|
|
|
# | | |
|
|
|
|
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
#
|
|
|
|
# Freedom in the Cloud
|
|
|
|
#
|
|
|
|
# Jitsi meet + videobridge
|
|
|
|
#
|
|
|
|
# Instructions: https://github.com/jitsi/jitsi-meet/blob/master/doc/manual-install.md
|
|
|
|
#
|
|
|
|
# License
|
|
|
|
# =======
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 Bob Mottram <bob@freedombone.net>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-11-09 14:15:48 +01:00
|
|
|
VARIANTS="full full-vim chat"
|
2016-11-05 16:42:19 +01:00
|
|
|
|
2016-11-05 18:05:54 +01:00
|
|
|
IN_DEFAULT_INSTALL=0
|
2016-11-09 14:15:48 +01:00
|
|
|
SHOW_ON_ABOUT=1
|
2016-11-05 16:42:19 +01:00
|
|
|
|
|
|
|
VIDEOBRIDGE_PORT=5347
|
|
|
|
JITSI_ONION_PORT=8102
|
|
|
|
JITSI_VIDEOBRIDGE_ONION_PORT=8103
|
|
|
|
JITSI_AUTH_ONION_PORT=8104
|
|
|
|
JITSI_FOCUS_ONION_PORT=8105
|
2016-11-09 14:15:48 +01:00
|
|
|
JITSI_PORT=5280
|
2016-11-05 16:42:19 +01:00
|
|
|
|
|
|
|
# domains
|
|
|
|
JITSI_DOMAIN_NAME=
|
|
|
|
JITSI_CODE=
|
|
|
|
JITSI_ONION_HOSTNAME=
|
|
|
|
JITSI_AUTH_ONION_HOSTNAME=
|
|
|
|
|
|
|
|
jitsi_variables=(ONION_ONLY
|
|
|
|
JITSI_DOMAIN_NAME
|
|
|
|
JITSI_CODE
|
|
|
|
JITSI_MEET_REPO
|
|
|
|
JITSI_MEET_COMMIT
|
|
|
|
DEFAULT_DOMAIN_NAME
|
|
|
|
JITSI_ONION_HOSTNAME
|
|
|
|
MY_USERNAME)
|
|
|
|
|
2016-11-05 21:04:48 +01:00
|
|
|
function change_password_jitsi {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
2016-11-05 16:42:19 +01:00
|
|
|
function can_install_videobridge {
|
|
|
|
check_architecture=$(uname -a)
|
|
|
|
if [[ "$check_architecture" == *"amd64"* || "$check_architecture" == *"i386"* ]]; then
|
|
|
|
echo "1"
|
|
|
|
else
|
|
|
|
echo "0"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_jitsi_onion_domain {
|
|
|
|
jitsi_subdomain_name="$1"
|
|
|
|
jitsi_subdomain_port="$2"
|
|
|
|
jitsi_subdomain_onion_port="$3"
|
|
|
|
|
|
|
|
new_domain=$(add_onion_service "${jitsi_subdomain_name}" ${jitsi_subdomain_port} ${jitsi_subdomain_onion_port})
|
|
|
|
|
|
|
|
if ! grep -q "Jitsi ${jitsi_subdomain_name} onion domain" /home/${MY_USERNAME}/README; then
|
|
|
|
echo $"Jitsi ${jitsi_subdomain_name} onion domain: ${new_domain}" >> /home/${MY_USERNAME}/README
|
|
|
|
echo '' >> /home/${MY_USERNAME}/README
|
|
|
|
chown ${MY_USERNAME}:${MY_USERNAME} /home/${MY_USERNAME}/README
|
|
|
|
chmod 600 /home/${MY_USERNAME}/README
|
|
|
|
else
|
|
|
|
if [ -f /home/${MY_USERNAME}/README ]; then
|
|
|
|
sed -i "s|Jitsi ${jitsi_subdomain_name} onion domain.*|Jitsi ${jitsi_subdomain_name} onion domain: ${new_domain}|g" /home/${MY_USERNAME}/README
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "${new_domain}"
|
|
|
|
}
|
|
|
|
|
|
|
|
function create_jitsi_subdomains {
|
|
|
|
JITSI_ONION_HOSTNAME=$(add_onion_service jitsi 80 ${JITSI_ONION_PORT})
|
|
|
|
|
|
|
|
if ! grep -q "Jitsi onion domain" /home/${MY_USERNAME}/README; then
|
|
|
|
echo $"Jitsi onion domain: ${JITSI_ONION_HOSTNAME}" >> /home/${MY_USERNAME}/README
|
|
|
|
echo '' >> /home/${MY_USERNAME}/README
|
|
|
|
chown ${MY_USERNAME}:${MY_USERNAME} /home/${MY_USERNAME}/README
|
|
|
|
chmod 600 /home/${MY_USERNAME}/README
|
|
|
|
else
|
|
|
|
if [ -f /home/${MY_USERNAME}/README ]; then
|
|
|
|
sed -i "s|Jitsi onion domain.*|Jitsi onion domain: ${JITSI_ONION_HOSTNAME}|g" /home/${MY_USERNAME}/README
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-11-09 18:13:06 +01:00
|
|
|
#JITSI_VIDEOBRIDGE_ONION_HOSTNAME=$(add_jitsi_onion_domain jitsi-videobridge ${VIDEOBRIDGE_PORT} ${JITSI_VIDEOBRIDGE_ONION_PORT})
|
|
|
|
#JITSI_AUTH_ONION_HOSTNAME=$(add_jitsi_onion_domain jitsi-auth 5222 ${JITSI_AUTH_ONION_PORT})
|
|
|
|
#JITSI_FOCUS_ONION_HOSTNAME=$(add_jitsi_onion_domain jitsi-focus 5222 ${JITSI_FOCUS_ONION_PORT})
|
2016-11-05 16:42:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function remove_jitsi_subdomains {
|
|
|
|
function_check remove_onion_service
|
|
|
|
remove_onion_service jitsi ${JITSI_ONION_PORT}
|
2016-11-09 18:13:06 +01:00
|
|
|
#remove_onion_service jitsi-videobridge ${JITSI_VIDEOBRIDGE_ONION_PORT}
|
|
|
|
#remove_onion_service jitsi-auth ${JITSI_AUTH_ONION_PORT}
|
|
|
|
#remove_onion_service jitsi-focus ${JITSI_FOCUS_ONION_PORT}
|
2016-11-05 16:42:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function remove_user_jitsi {
|
|
|
|
remove_username="$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_user_jitsi {
|
|
|
|
new_username="$1"
|
|
|
|
new_user_password="$2"
|
|
|
|
}
|
|
|
|
|
|
|
|
function install_interactive_jitsi {
|
|
|
|
if [ ! ${ONION_ONLY} ]; then
|
|
|
|
ONION_ONLY='no'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ${ONION_ONLY} != "no" ]]; then
|
|
|
|
JITSI_DOMAIN_NAME='jitsi.local'
|
|
|
|
write_config_param "JITSI_DOMAIN_NAME" "$JITSI_DOMAIN_NAME"
|
|
|
|
else
|
|
|
|
function_check interactive_site_details
|
|
|
|
interactive_site_details "jitsi" "JITSI_DOMAIN_NAME" "JITSI_CODE"
|
|
|
|
fi
|
|
|
|
APP_INSTALLED=1
|
|
|
|
}
|
|
|
|
|
|
|
|
function configure_interactive_jitsi {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
|
|
|
function reconfigure_jitsi {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
|
|
|
function upgrade_jitsi {
|
2016-11-09 15:37:17 +01:00
|
|
|
if [ -f /etc/init.d/jicofo ]; then
|
|
|
|
systemctl stop jicofo
|
|
|
|
sed -i 's|exec $DAEMON|exec /usr/bin/torify $DAEMON|g' /etc/init.d/jicofo
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl start jicofo
|
|
|
|
fi
|
2016-11-05 16:42:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function backup_local_jitsi {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
|
|
|
function restore_local_jitsi {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
|
|
|
function backup_remote_jitsi {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
|
|
|
function restore_remote_jitsi {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove_jitsi {
|
|
|
|
read_config_param JITSI_DOMAIN_NAME
|
|
|
|
if [ ${#JITSI_DOMAIN_NAME} -eq 0 ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f /etc/nginx/sites-available/${JITSI_DOMAIN_NAME} ]; then
|
|
|
|
nginx_dissite ${JITSI_DOMAIN_NAME}
|
|
|
|
if [ -d /var/www/${JITSI_DOMAIN_NAME} ]; then
|
|
|
|
rm -rf /var/www/${JITSI_DOMAIN_NAME}
|
|
|
|
fi
|
|
|
|
rm /etc/nginx/sites-available/${JITSI_DOMAIN_NAME}
|
|
|
|
|
|
|
|
function_check remove_certs
|
|
|
|
remove_certs ${JITSI_DOMAIN_NAME}
|
|
|
|
|
|
|
|
systemctl reload nginx
|
|
|
|
fi
|
|
|
|
|
|
|
|
remove_jitsi_subdomains
|
|
|
|
|
|
|
|
systemctl stop prosody
|
|
|
|
if [ -f /etc/prosody/conf.d/${JITSI_DOMAIN_NAME}.cfg.lua ]; then
|
|
|
|
rm /etc/prosody/conf.d/${JITSI_DOMAIN_NAME}.cfg.lua
|
|
|
|
fi
|
|
|
|
if [ -f /etc/prosody/conf.avail/${JITSI_DOMAIN_NAME}.cfg.lua ]; then
|
|
|
|
rm /etc/prosody/conf.avail/${JITSI_DOMAIN_NAME}.cfg.lua
|
|
|
|
fi
|
|
|
|
prosodyctl unregister focus auth.${JITSI_DOMAIN_NAME}
|
|
|
|
systemctl start prosody
|
|
|
|
|
|
|
|
remove_nodejs jitsi
|
|
|
|
|
|
|
|
# remove videobridge
|
|
|
|
#firewall_remove ${VIDEOBRIDGE_PORT}
|
2016-11-09 18:13:06 +01:00
|
|
|
apt-get -yq remove --purge jitsi-videobridge jicofo jitsi-meet
|
2016-11-05 16:42:19 +01:00
|
|
|
if [ -d /etc/jitsi ]; then
|
|
|
|
rm -rf /etc/jitsi
|
|
|
|
fi
|
2016-11-08 15:13:50 +01:00
|
|
|
deluser --remove-all-files jitsi
|
2016-11-05 16:42:19 +01:00
|
|
|
if [ -d /usr/share/jitsi-videobridge ]; then
|
|
|
|
rm -rf /usr/share/jitsi-videobridge
|
|
|
|
fi
|
|
|
|
sed -i "/jitsi/d" /etc/apt/sources.list
|
|
|
|
apt-get update
|
|
|
|
|
|
|
|
remove_app jitsi
|
|
|
|
remove_completion_param install_jitsi
|
|
|
|
sed -i '/jitsi/d' ${COMPLETION_FILE}
|
|
|
|
sed -i '/Jitsi/d' /home/${MY_USERNAME}/README
|
2016-11-06 15:13:00 +01:00
|
|
|
|
|
|
|
function_check remove_ddns_domain
|
|
|
|
remove_ddns_domain $JITSI_DOMAIN_NAME
|
2016-11-05 16:42:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function install_jitsi_xmpp {
|
|
|
|
if [ ! -d /etc/prosody/conf.avail ]; then
|
|
|
|
echo $'Missing directory /etc/prosody/conf.avail'
|
|
|
|
exit 62382
|
|
|
|
fi
|
|
|
|
|
|
|
|
cp /var/www/${JITSI_DOMAIN_NAME}/htdocs/prosody-plugins/*.lua /usr/lib/prosody/modules
|
|
|
|
cp -r /var/www/${JITSI_DOMAIN_NAME}/htdocs/prosody-plugins/token /usr/lib/prosody/modules/
|
|
|
|
|
|
|
|
update_default_domain
|
|
|
|
|
|
|
|
prosody_config=/etc/prosody/conf.avail/${JITSI_DOMAIN_NAME}.cfg.lua
|
|
|
|
echo "VirtualHost \"${JITSI_DOMAIN_NAME}\"" > $prosody_config
|
2016-11-09 14:15:48 +01:00
|
|
|
echo ' authentication = "anonymous"' >> $prosody_config
|
|
|
|
echo ' ssl = {' >> $prosody_config
|
|
|
|
echo " key = \"/etc/prosody/certs/${JITSI_DOMAIN_NAME}.key\";" >> $prosody_config
|
|
|
|
echo " certificate = \"/etc/prosody/certs/${JITSI_DOMAIN_NAME}.pem\";" >> $prosody_config
|
|
|
|
echo " dhparam = \"/etc/prosody/certs/${JITSI_DOMAIN_NAME}.dhparam\";" >> $prosody_config
|
|
|
|
echo ' options = {"no_sslv2", "no_sslv3" };' >> $prosody_config
|
|
|
|
echo ' }' >> $prosody_config
|
2016-11-05 16:42:19 +01:00
|
|
|
echo '' >> $prosody_config
|
2016-11-09 14:15:48 +01:00
|
|
|
echo ' modules_enabled = {' >> $prosody_config
|
|
|
|
echo ' "bosh";' >> $prosody_config
|
|
|
|
echo ' "pubsub";' >> $prosody_config
|
|
|
|
echo ' "tls";' >> $prosody_config
|
|
|
|
echo ' "onions";' >> $prosody_config
|
|
|
|
echo ' }' >> $prosody_config
|
2016-11-05 16:42:19 +01:00
|
|
|
echo '' >> $prosody_config
|
|
|
|
echo "VirtualHost \"${JITSI_ONION_HOSTNAME}\"" > $prosody_config
|
|
|
|
echo ' authentication = "anonymous"' >> $prosody_config
|
2016-11-09 14:15:48 +01:00
|
|
|
echo ' modules_enabled = {' >> $prosody_config
|
|
|
|
echo ' "bosh";' >> $prosody_config
|
|
|
|
echo ' "pubsub";' >> $prosody_config
|
|
|
|
echo ' "onions";' >> $prosody_config
|
|
|
|
echo ' }' >> $prosody_config
|
2016-11-05 16:42:19 +01:00
|
|
|
echo '' >> $prosody_config
|
|
|
|
echo "VirtualHost \"${JITSI_AUTH_ONION_HOSTNAME}\"" >> $prosody_config
|
|
|
|
echo ' authentication = "internal_plain"' >> $prosody_config
|
2016-11-09 14:15:48 +01:00
|
|
|
echo ' modules_enabled = {' >> $prosody_config
|
|
|
|
echo ' "onions";' >> $prosody_config
|
|
|
|
echo ' }' >> $prosody_config
|
2016-11-05 16:42:19 +01:00
|
|
|
echo '' >> $prosody_config
|
|
|
|
echo "admins = { \"focus@${JITSI_AUTH_ONION_HOSTNAME}\" }" >> $prosody_config
|
|
|
|
echo '' >> $prosody_config
|
|
|
|
echo "Component \"${JITSI_CONFERENCE_ONION_HOSTNAME}\" \"muc\"" >> $prosody_config
|
|
|
|
echo "Component \"${JITSI_VIDEOBRIDGE_ONION_HOSTNAME}\"" >> $prosody_config
|
|
|
|
echo " component_secret = \"${JITSI_VIDEOBRIDGE_SECRET}\"" >> $prosody_config
|
|
|
|
echo "Component \"${JITSI_FOCUS_ONION_HOSTNAME}\"" >> $prosody_config
|
|
|
|
echo " component_secret = \"${JITSI_FOCUS_SECRET}\"" >> $prosody_config
|
|
|
|
|
|
|
|
ln -s /etc/prosody/conf.avail/${JITSI_DOMAIN_NAME}.cfg.lua /etc/prosody/conf.d/${JITSI_DOMAIN_NAME}.cfg.lua
|
|
|
|
|
|
|
|
prosodyctl register focus ${JITSI_AUTH_ONION_HOSTNAME} "${JITSI_CONFERENCE_SECRET}"
|
|
|
|
}
|
|
|
|
|
2016-11-09 18:13:06 +01:00
|
|
|
function install_jitsi {
|
|
|
|
if [[ "$(can_install_videobridge)" == "0" ]]; then
|
|
|
|
echo $'jitsi meet/videobridge can only be installed on i386 or amd64 architectures'
|
|
|
|
exit 83562
|
2016-11-05 16:42:19 +01:00
|
|
|
fi
|
|
|
|
|
2016-11-09 18:13:06 +01:00
|
|
|
if [ ! ${JITSI_DOMAIN_NAME} ]; then
|
|
|
|
echo $'No domain name was given for jitsi'
|
|
|
|
exit 47682
|
|
|
|
fi
|
2016-11-05 16:42:19 +01:00
|
|
|
|
2016-11-09 18:13:06 +01:00
|
|
|
if [ ! -d /etc/prosody ]; then
|
|
|
|
echo $'xmpp must be installed before installing jitsi'
|
|
|
|
exit 62394
|
2016-11-05 16:42:19 +01:00
|
|
|
fi
|
2016-11-09 18:13:06 +01:00
|
|
|
|
|
|
|
if [[ "${JITSI_DOMAIN_NAME}" == "${DEFAULT_DOMAIN_NAME}" ]]; then
|
|
|
|
echo $'The jitsi domain name should not be the same as the main domain name'
|
|
|
|
exit 78372
|
2016-11-05 16:42:19 +01:00
|
|
|
fi
|
|
|
|
|
2016-11-09 18:13:06 +01:00
|
|
|
# add jitsi repo
|
|
|
|
apt-get -yq install wget debconf-utils
|
|
|
|
echo 'deb http://download.jitsi.org/nightly/deb unstable/' >> /etc/apt/sources.list
|
|
|
|
wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -
|
|
|
|
apt-get update
|
2016-11-05 16:42:19 +01:00
|
|
|
|
2016-11-09 18:13:06 +01:00
|
|
|
# create onion domains
|
|
|
|
create_jitsi_subdomains
|
2016-11-05 16:42:19 +01:00
|
|
|
|
2016-11-09 18:13:06 +01:00
|
|
|
# videobridge
|
|
|
|
debconf-set-selections <<< "jitsi-videobridge jitsi-videobridge/jvb-hostname string localhost"
|
|
|
|
apt-get -yq install jitsi-videobridge
|
|
|
|
if [ ! -d /etc/jitsi ]; then
|
|
|
|
echo $'Videobridge package failed to install'
|
|
|
|
exit 63983
|
|
|
|
fi
|
|
|
|
firewall_add videobridge ${VIDEOBRIDGE_PORT}
|
2016-11-05 16:42:19 +01:00
|
|
|
|
2016-11-09 18:13:06 +01:00
|
|
|
# meet
|
|
|
|
debconf-set-selections <<< "jitsi-meet jitsi-meet/cert-choice multiselect 2"
|
|
|
|
apt-get -yq install jitsi-meet
|
2016-11-05 16:42:19 +01:00
|
|
|
|
|
|
|
jitsi_nginx_site=/etc/nginx/sites-available/$JITSI_DOMAIN_NAME
|
|
|
|
if [[ $ONION_ONLY == "no" ]]; then
|
|
|
|
function_check nginx_http_redirect
|
|
|
|
nginx_http_redirect $JITSI_DOMAIN_NAME
|
|
|
|
echo 'server {' >> $jitsi_nginx_site
|
|
|
|
echo ' listen 443 ssl;' >> $jitsi_nginx_site
|
|
|
|
echo " server_name ${JITSI_DOMAIN_NAME};" >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' # Security' >> $jitsi_nginx_site
|
|
|
|
function_check nginx_ssl
|
|
|
|
nginx_ssl $JITSI_DOMAIN_NAME
|
|
|
|
|
|
|
|
function_check nginx_disable_sniffing
|
|
|
|
nginx_disable_sniffing $JITSI_DOMAIN_NAME
|
|
|
|
|
|
|
|
echo ' add_header Strict-Transport-Security max-age=15768000;' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' # Logs' >> $jitsi_nginx_site
|
|
|
|
echo ' access_log off;' >> $jitsi_nginx_site
|
|
|
|
echo ' error_log off;' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' # Root' >> $jitsi_nginx_site
|
2016-11-09 18:13:06 +01:00
|
|
|
echo " root /usr/share/jitsi-meet;" >> $jitsi_nginx_site
|
2016-11-05 16:42:19 +01:00
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' index index.html;' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' location ~ ^/([a-zA-Z0-9=\?]+)$ {' >> $jitsi_nginx_site
|
|
|
|
echo ' rewrite ^/(.*)$ / break;' >> $jitsi_nginx_site
|
|
|
|
echo ' }' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' location / {' >> $jitsi_nginx_site
|
|
|
|
function_check nginx_limits
|
|
|
|
nginx_limits $JITSI_DOMAIN_NAME '15m'
|
|
|
|
echo ' }' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' location /http-bind {' >> $jitsi_nginx_site
|
2016-11-09 14:15:48 +01:00
|
|
|
echo " proxy_pass http://localhost:${JITSI_PORT}/http-bind;" >> $jitsi_nginx_site
|
2016-11-05 16:42:19 +01:00
|
|
|
echo ' proxy_set_header X-Forwarded-For $remote_addr;' >> $jitsi_nginx_site
|
|
|
|
echo ' proxy_set_header Host $http_host;' >> $jitsi_nginx_site
|
|
|
|
echo ' }' >> $jitsi_nginx_site
|
|
|
|
echo '}' >> $jitsi_nginx_site
|
|
|
|
else
|
|
|
|
echo -n '' > $jitsi_nginx_site
|
|
|
|
fi
|
|
|
|
echo 'server {' >> $jitsi_nginx_site
|
|
|
|
echo " listen 127.0.0.1:$JITSI_ONION_PORT default_server;" >> $jitsi_nginx_site
|
2016-11-09 14:15:48 +01:00
|
|
|
if [[ $ONION_ONLY == 'no' ]]; then
|
|
|
|
echo " server_name ${JITSI_DOMAIN_NAME};" >> $jitsi_nginx_site
|
|
|
|
else
|
|
|
|
echo " server_name ${JITSI_ONION_HOSTNAME};" >> $jitsi_nginx_site
|
|
|
|
fi
|
2016-11-05 16:42:19 +01:00
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
function_check nginx_disable_sniffing
|
|
|
|
nginx_disable_sniffing $JITSI_DOMAIN_NAME
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' # Logs' >> $jitsi_nginx_site
|
|
|
|
echo ' access_log off;' >> $jitsi_nginx_site
|
|
|
|
echo ' error_log off;' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' # Root' >> $jitsi_nginx_site
|
2016-11-09 18:13:06 +01:00
|
|
|
echo " root /usr/share/jitsi-meet;" >> $jitsi_nginx_site
|
2016-11-05 16:42:19 +01:00
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' index index.html;' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' location ~ ^/([a-zA-Z0-9=\?]+)$ {' >> $jitsi_nginx_site
|
|
|
|
echo ' rewrite ^/(.*)$ / break;' >> $jitsi_nginx_site
|
|
|
|
echo ' }' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' location / {' >> $jitsi_nginx_site
|
|
|
|
function_check nginx_limits
|
|
|
|
nginx_limits $JITSI_DOMAIN_NAME '15m'
|
|
|
|
echo ' }' >> $jitsi_nginx_site
|
|
|
|
echo '' >> $jitsi_nginx_site
|
|
|
|
echo ' location /http-bind {' >> $jitsi_nginx_site
|
2016-11-09 14:15:48 +01:00
|
|
|
echo " proxy_pass http://localhost:${JITSI_PORT}/http-bind;" >> $jitsi_nginx_site
|
2016-11-05 16:42:19 +01:00
|
|
|
echo ' proxy_set_header X-Forwarded-For $remote_addr;' >> $jitsi_nginx_site
|
|
|
|
echo ' proxy_set_header Host $http_host;' >> $jitsi_nginx_site
|
|
|
|
echo ' }' >> $jitsi_nginx_site
|
|
|
|
echo '}' >> $jitsi_nginx_site
|
|
|
|
|
|
|
|
function_check create_site_certificate
|
|
|
|
create_site_certificate ${JITSI_DOMAIN_NAME} 'yes'
|
|
|
|
|
|
|
|
if [ -f /etc/ssl/certs/${JITSI_DOMAIN_NAME}.crt ]; then
|
|
|
|
mv /etc/ssl/certs/${JITSI_DOMAIN_NAME}.crt /etc/ssl/certs/${JITSI_DOMAIN_NAME}.pem
|
|
|
|
fi
|
2016-11-09 18:13:06 +01:00
|
|
|
|
|
|
|
# install_jitsi_xmpp
|
2016-11-05 16:42:19 +01:00
|
|
|
|
|
|
|
function_check nginx_ensite
|
|
|
|
nginx_ensite ${JITSI_DOMAIN_NAME}
|
|
|
|
|
|
|
|
set_completion_param "jitsi domain" "$JITSI_DOMAIN_NAME"
|
|
|
|
|
|
|
|
chown -R www-data:www-data /var/www/${JITSI_DOMAIN_NAME}/htdocs
|
|
|
|
systemctl restart nginx
|
|
|
|
|
2016-11-06 15:13:00 +01:00
|
|
|
function_check add_ddns_domain
|
|
|
|
add_ddns_domain $JITSI_DOMAIN_NAME
|
|
|
|
|
2016-11-05 16:42:19 +01:00
|
|
|
APP_INSTALLED=1
|
|
|
|
}
|