2015-07-27 21:07:22 +00:00
|
|
|
|
#!/bin/bash
|
2016-11-21 21:16:37 +00:00
|
|
|
|
# postinst script for jitsi-meet-web-config
|
2014-08-10 19:29:48 +00:00
|
|
|
|
#
|
|
|
|
|
# see: dh_installdeb(1)
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
# summary of how this script can be called:
|
|
|
|
|
# * <postinst> `configure' <most-recently-configured-version>
|
|
|
|
|
# * <old-postinst> `abort-upgrade' <new version>
|
|
|
|
|
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
|
|
|
|
# <new-version>
|
|
|
|
|
# * <postinst> `abort-remove'
|
|
|
|
|
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
|
|
|
|
# <failed-install-package> <version> `removing'
|
|
|
|
|
# <conflicting-package> <version>
|
|
|
|
|
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
|
|
|
# the debian-policy package
|
|
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
|
configure)
|
|
|
|
|
|
2014-10-23 08:00:48 +00:00
|
|
|
|
# loading debconf
|
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
|
|
2016-11-21 21:16:37 +00:00
|
|
|
|
# try to get host from jitsi-videobridge
|
|
|
|
|
db_get jitsi-videobridge/jvb-hostname
|
|
|
|
|
if [ -z "$RET" ] ; then
|
|
|
|
|
# server hostname
|
|
|
|
|
db_set jitsi-videobridge/jvb-hostname "localhost"
|
|
|
|
|
db_input critical jitsi-videobridge/jvb-hostname || true
|
|
|
|
|
db_go
|
|
|
|
|
fi
|
|
|
|
|
JVB_HOSTNAME="$RET"
|
|
|
|
|
|
2015-07-27 21:07:22 +00:00
|
|
|
|
# detect dpkg-reconfigure
|
|
|
|
|
RECONFIGURING="false"
|
2015-03-16 15:54:36 +00:00
|
|
|
|
db_get jitsi-meet/jvb-hostname
|
|
|
|
|
JVB_HOSTNAME_OLD=$RET
|
|
|
|
|
if [ -n "$RET" ] && [ ! "$JVB_HOSTNAME_OLD" = "$JVB_HOSTNAME" ] ; then
|
2015-07-27 21:07:22 +00:00
|
|
|
|
RECONFIGURING="true"
|
2015-03-16 15:54:36 +00:00
|
|
|
|
rm -f /etc/jitsi/meet/$JVB_HOSTNAME_OLD-config.js
|
|
|
|
|
fi
|
|
|
|
|
|
2015-07-27 21:07:22 +00:00
|
|
|
|
JVB_SERVE="false"
|
2019-12-12 17:49:41 +00:00
|
|
|
|
# this detect only old installations
|
|
|
|
|
db_get jitsi-meet/jvb-serve || true
|
2015-07-27 21:07:22 +00:00
|
|
|
|
if [ -n "$RET" ] && [ "$RET" = "true" ] ; then
|
|
|
|
|
JVB_SERVE="true"
|
|
|
|
|
fi
|
|
|
|
|
|
2014-10-23 08:00:48 +00:00
|
|
|
|
# stores the hostname so we will reuse it later, like in purge
|
|
|
|
|
db_set jitsi-meet/jvb-hostname $JVB_HOSTNAME
|
|
|
|
|
|
2015-11-09 22:26:13 +00:00
|
|
|
|
NGINX_INSTALL_CHECK="$(dpkg-query -f '${Status}' -W 'nginx' 2>/dev/null | awk '{print $3}' || true)"
|
2020-01-09 16:51:27 +00:00
|
|
|
|
NGINX_FULL_INSTALL_CHECK="$(dpkg-query -f '${Status}' -W 'nginx-full' 2>/dev/null | awk '{print $3}' || true)"
|
2019-02-14 11:00:59 +00:00
|
|
|
|
NGINX_EXTRAS_INSTALL_CHECK="$(dpkg-query -f '${Status}' -W 'nginx-extras' 2>/dev/null | awk '{print $3}' || true)"
|
|
|
|
|
if [ "$NGINX_INSTALL_CHECK" = "installed" ] \
|
|
|
|
|
|| [ "$NGINX_INSTALL_CHECK" = "unpacked" ] \
|
2020-01-09 16:51:27 +00:00
|
|
|
|
|| [ "$NGINX_FULL_INSTALL_CHECK" = "installed" ] \
|
|
|
|
|
|| [ "$NGINX_FULL_INSTALL_CHECK" = "unpacked" ] \
|
2019-02-14 11:00:59 +00:00
|
|
|
|
|| [ "$NGINX_EXTRAS_INSTALL_CHECK" = "installed" ] \
|
|
|
|
|
|| [ "$NGINX_EXTRAS_INSTALL_CHECK" = "unpacked" ] ; then
|
2015-07-30 19:35:37 +00:00
|
|
|
|
FORCE_NGINX="true"
|
|
|
|
|
fi
|
2016-11-21 21:16:37 +00:00
|
|
|
|
APACHE_INSTALL_CHECK="$(dpkg-query -f '${Status}' -W 'apache2' 2>/dev/null | awk '{print $3}' || true)"
|
|
|
|
|
if [ "$APACHE_INSTALL_CHECK" = "installed" ] || [ "$APACHE_INSTALL_CHECK" = "unpacked" ] ; then
|
|
|
|
|
FORCE_APACHE="true"
|
|
|
|
|
fi
|
2015-07-30 19:35:37 +00:00
|
|
|
|
|
2020-03-27 14:07:47 +00:00
|
|
|
|
UPLOADED_CERT_CHOICE="I want to use my own certificate"
|
2016-11-21 21:16:37 +00:00
|
|
|
|
# if first time config ask for certs, or if we are reconfiguring
|
|
|
|
|
if [ -z "$JVB_HOSTNAME_OLD" ] || [ "$RECONFIGURING" = "true" ] ; then
|
|
|
|
|
db_get jitsi-meet/cert-choice
|
|
|
|
|
CERT_CHOICE="$RET"
|
|
|
|
|
|
|
|
|
|
if [ "$CERT_CHOICE" = "$UPLOADED_CERT_CHOICE" ] ; then
|
|
|
|
|
db_set jitsi-meet/cert-path-key "/etc/ssl/$JVB_HOSTNAME.key"
|
|
|
|
|
db_input critical jitsi-meet/cert-path-key || true
|
|
|
|
|
db_go
|
|
|
|
|
db_get jitsi-meet/cert-path-key
|
|
|
|
|
CERT_KEY="$RET"
|
|
|
|
|
db_set jitsi-meet/cert-path-crt "/etc/ssl/$JVB_HOSTNAME.crt"
|
|
|
|
|
db_input critical jitsi-meet/cert-path-crt || true
|
|
|
|
|
db_go
|
|
|
|
|
db_get jitsi-meet/cert-path-crt
|
|
|
|
|
CERT_CRT="$RET"
|
|
|
|
|
else
|
|
|
|
|
# create self-signed certs
|
|
|
|
|
CERT_KEY="/etc/jitsi/meet/$JVB_HOSTNAME.key"
|
|
|
|
|
CERT_CRT="/etc/jitsi/meet/$JVB_HOSTNAME.crt"
|
|
|
|
|
HOST="$( (hostname -s; echo localhost) | head -n 1)"
|
|
|
|
|
DOMAIN="$( (hostname -d; echo localdomain) | head -n 1)"
|
2020-06-23 12:47:36 +00:00
|
|
|
|
openssl req -new -newkey rsa:4096 -days 3650 -nodes -x509 -subj \
|
2016-11-21 21:16:37 +00:00
|
|
|
|
"/O=$DOMAIN/OU=$HOST/CN=$JVB_HOSTNAME/emailAddress=webmaster@$HOST.$DOMAIN" \
|
|
|
|
|
-keyout $CERT_KEY \
|
2020-06-23 12:47:36 +00:00
|
|
|
|
-out $CERT_CRT \
|
|
|
|
|
-reqexts SAN \
|
|
|
|
|
-extensions SAN \
|
|
|
|
|
-config <(cat /etc/ssl/openssl.cnf \
|
2020-07-02 15:30:36 +00:00
|
|
|
|
<(printf "[SAN]\nsubjectAltName=DNS:localhost,DNS:$JVB_HOSTNAME"))
|
2016-11-21 21:16:37 +00:00
|
|
|
|
fi
|
|
|
|
|
fi
|
2014-08-29 12:28:51 +00:00
|
|
|
|
|
2014-08-10 19:29:48 +00:00
|
|
|
|
# jitsi meet
|
2014-10-22 15:22:18 +00:00
|
|
|
|
JITSI_MEET_CONFIG="/etc/jitsi/meet/$JVB_HOSTNAME-config.js"
|
2015-07-27 21:07:22 +00:00
|
|
|
|
if [ ! -f $JITSI_MEET_CONFIG ] ; then
|
2019-11-17 10:48:06 +00:00
|
|
|
|
cp /usr/share/jitsi-meet-web-config/config.js $JITSI_MEET_CONFIG
|
2019-12-04 14:59:28 +00:00
|
|
|
|
# replaces needed config for multidomain as it works only with nginx
|
2020-03-27 14:07:47 +00:00
|
|
|
|
if [[ "$FORCE_NGINX" = "true" ]] ; then
|
|
|
|
|
sed -i "s/conference.jitsi-meet.example.com/conference.<\!--# echo var=\"subdomain\" default=\"\" -->jitsi-meet.example.com/g" $JITSI_MEET_CONFIG
|
|
|
|
|
fi
|
2014-10-22 15:22:18 +00:00
|
|
|
|
sed -i "s/jitsi-meet.example.com/$JVB_HOSTNAME/g" $JITSI_MEET_CONFIG
|
|
|
|
|
fi
|
2014-08-10 19:29:48 +00:00
|
|
|
|
|
2020-03-27 14:07:47 +00:00
|
|
|
|
# getting rid of jetty serving web
|
2019-12-12 17:49:41 +00:00
|
|
|
|
if [[ "$JVB_SERVE" = "true" ]] ; then
|
2020-03-27 14:07:47 +00:00
|
|
|
|
JVB_CONFIG="/etc/jitsi/videobridge/sip-communicator.properties"
|
|
|
|
|
|
|
|
|
|
# we will write to the file if missing create it
|
|
|
|
|
if [ -f $JVB_CONFIG ] ; then
|
|
|
|
|
echo ""
|
|
|
|
|
echo "------------------------------------------------"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "You are using jetty to serve jitsi-meet, we are now upgrading you to use nginx!"
|
|
|
|
|
echo ""
|
2020-03-30 23:25:01 +00:00
|
|
|
|
echo "If you are using Let’s Encrypt certificates please re-run the script."
|
|
|
|
|
echo ""
|
2020-03-27 14:07:47 +00:00
|
|
|
|
echo "------------------------------------------------"
|
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
|
|
sed -i "s/org.jitsi.videobridge.rest.jetty/#org.jitsi.videobridge.rest.jetty/g" $JVB_CONFIG
|
|
|
|
|
sed -i "s/org.jitsi.videobridge.TCP_HARVESTER_PORT/#org.jitsi.videobridge.TCP_HARVESTER_PORT/g" $JVB_CONFIG
|
|
|
|
|
|
|
|
|
|
if [ -d /run/systemd/system ]; then
|
|
|
|
|
systemctl restart jitsi-videobridge2.service >/dev/null || true
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Removing this value will force nginx or apache to be locally configured
|
|
|
|
|
JVB_HOSTNAME_OLD=""
|
|
|
|
|
|
|
|
|
|
db_get jitsi-meet/cert-choice
|
|
|
|
|
CERT_CHOICE="$RET"
|
|
|
|
|
# Fix certs on upgrade from jetty
|
|
|
|
|
if [ "$CERT_CHOICE" = "$UPLOADED_CERT_CHOICE" ] ; then
|
|
|
|
|
db_get jitsi-meet/cert-path-key
|
|
|
|
|
CERT_KEY="$RET"
|
|
|
|
|
db_get jitsi-meet/cert-path-crt
|
|
|
|
|
CERT_CRT="$RET"
|
|
|
|
|
else
|
|
|
|
|
# create self-signed certs
|
|
|
|
|
CERT_KEY="/etc/jitsi/meet/$JVB_HOSTNAME.key"
|
|
|
|
|
CERT_CRT="/etc/jitsi/meet/$JVB_HOSTNAME.crt"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
db_set jitsi-meet/jvb-serve "false"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ "$FORCE_NGINX" = "true" && ( -z "$JVB_HOSTNAME_OLD" || "$RECONFIGURING" = "true" ) ]] ; then
|
2019-12-13 10:01:55 +00:00
|
|
|
|
|
2015-07-27 21:07:22 +00:00
|
|
|
|
# this is a reconfigure, lets just delete old links
|
|
|
|
|
if [ "$RECONFIGURING" = "true" ] ; then
|
|
|
|
|
rm -f /etc/nginx/sites-enabled/$JVB_HOSTNAME_OLD.conf
|
|
|
|
|
rm -f /etc/jitsi/meet/$JVB_HOSTNAME_OLD-config.js
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# nginx conf
|
|
|
|
|
if [ ! -f /etc/nginx/sites-available/$JVB_HOSTNAME.conf ] ; then
|
2019-11-17 10:48:06 +00:00
|
|
|
|
cp /usr/share/jitsi-meet-web-config/jitsi-meet.example /etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
2015-07-27 21:07:22 +00:00
|
|
|
|
if [ ! -f /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf ] ; then
|
|
|
|
|
ln -s /etc/nginx/sites-available/$JVB_HOSTNAME.conf /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf
|
|
|
|
|
fi
|
|
|
|
|
sed -i "s/jitsi-meet.example.com/$JVB_HOSTNAME/g" /etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$CERT_CHOICE" = "$UPLOADED_CERT_CHOICE" ] ; then
|
|
|
|
|
# replace self-signed certificate paths with user provided ones
|
|
|
|
|
CERT_KEY_ESC=$(echo $CERT_KEY | sed 's/\./\\\./g')
|
|
|
|
|
CERT_KEY_ESC=$(echo $CERT_KEY_ESC | sed 's/\//\\\//g')
|
2016-11-21 21:16:37 +00:00
|
|
|
|
sed -i "s/ssl_certificate_key\ \/etc\/jitsi\/meet\/.*key/ssl_certificate_key\ $CERT_KEY_ESC/g" \
|
2015-07-27 21:07:22 +00:00
|
|
|
|
/etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
|
|
|
|
CERT_CRT_ESC=$(echo $CERT_CRT | sed 's/\./\\\./g')
|
|
|
|
|
CERT_CRT_ESC=$(echo $CERT_CRT_ESC | sed 's/\//\\\//g')
|
2016-11-21 21:16:37 +00:00
|
|
|
|
sed -i "s/ssl_certificate\ \/etc\/jitsi\/meet\/.*crt/ssl_certificate\ $CERT_CRT_ESC/g" \
|
2015-07-27 21:07:22 +00:00
|
|
|
|
/etc/nginx/sites-available/$JVB_HOSTNAME.conf
|
|
|
|
|
fi
|
|
|
|
|
|
2019-12-02 13:33:35 +00:00
|
|
|
|
invoke-rc.d nginx reload || true
|
2016-11-21 21:16:37 +00:00
|
|
|
|
elif [[ "$FORCE_APACHE" = "true" && ( -z "$JVB_HOSTNAME_OLD" || "$RECONFIGURING" = "true" ) ]] ; then
|
2019-12-13 10:01:55 +00:00
|
|
|
|
|
2016-11-30 05:11:15 +00:00
|
|
|
|
# this is a reconfigure, lets just delete old links
|
|
|
|
|
if [ "$RECONFIGURING" = "true" ] ; then
|
|
|
|
|
a2dissite $JVB_HOSTNAME_OLD.conf
|
|
|
|
|
rm -f /etc/jitsi/meet/$JVB_HOSTNAME_OLD-config.js
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# apache2 config
|
|
|
|
|
if [ ! -f /etc/apache2/sites-available/$JVB_HOSTNAME.conf ] ; then
|
|
|
|
|
# when creating new config, make sure all needed modules are enabled
|
|
|
|
|
a2enmod rewrite ssl headers proxy_http include
|
2019-11-17 10:48:06 +00:00
|
|
|
|
cp /usr/share/jitsi-meet-web-config/jitsi-meet.example-apache /etc/apache2/sites-available/$JVB_HOSTNAME.conf
|
2016-11-30 05:11:15 +00:00
|
|
|
|
a2ensite $JVB_HOSTNAME.conf
|
|
|
|
|
sed -i "s/jitsi-meet.example.com/$JVB_HOSTNAME/g" /etc/apache2/sites-available/$JVB_HOSTNAME.conf
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$CERT_CHOICE" = "$UPLOADED_CERT_CHOICE" ] ; then
|
|
|
|
|
# replace self-signed certificate paths with user provided ones
|
|
|
|
|
CERT_KEY_ESC=$(echo $CERT_KEY | sed 's/\./\\\./g')
|
|
|
|
|
CERT_KEY_ESC=$(echo $CERT_KEY_ESC | sed 's/\//\\\//g')
|
2016-11-30 05:54:19 +00:00
|
|
|
|
sed -i "s/SSLCertificateKeyFile\ \/etc\/jitsi\/meet\/.*key/SSLCertificateKeyFile\ $CERT_KEY_ESC/g" \
|
2016-11-30 05:11:15 +00:00
|
|
|
|
/etc/apache2/sites-available/$JVB_HOSTNAME.conf
|
|
|
|
|
CERT_CRT_ESC=$(echo $CERT_CRT | sed 's/\./\\\./g')
|
|
|
|
|
CERT_CRT_ESC=$(echo $CERT_CRT_ESC | sed 's/\//\\\//g')
|
2016-11-30 05:54:19 +00:00
|
|
|
|
sed -i "s/SSLCertificateFile\ \/etc\/jitsi\/meet\/.*crt/SSLCertificateFile\ $CERT_CRT_ESC/g" \
|
2016-11-30 05:11:15 +00:00
|
|
|
|
/etc/apache2/sites-available/$JVB_HOSTNAME.conf
|
|
|
|
|
fi
|
|
|
|
|
|
2019-12-02 13:33:35 +00:00
|
|
|
|
invoke-rc.d apache2 reload || true
|
2015-07-27 21:07:22 +00:00
|
|
|
|
fi
|
|
|
|
|
|
2017-03-17 19:15:42 +00:00
|
|
|
|
echo "----------------"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "You can now switch to a Let’s Encrypt certificate. To do so, execute:"
|
|
|
|
|
echo "/usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "----------------"
|
|
|
|
|
|
2014-10-23 08:00:48 +00:00
|
|
|
|
# and we're done with debconf
|
|
|
|
|
db_stop
|
2014-08-10 19:29:48 +00:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
*)
|
|
|
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
|
|
|
# generated by other debhelper scripts.
|
|
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
|
|
|
|
|
|
exit 0
|