Disable jitsi meet for now
This nightly repo isn't ideal and looks like it might cause problems
This commit is contained in:
parent
24f4f043f2
commit
d22f699b5a
|
@ -30,10 +30,10 @@
|
|||
# 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/>.
|
||||
|
||||
VARIANTS="full full-vim chat"
|
||||
VARIANTS=""
|
||||
|
||||
IN_DEFAULT_INSTALL=0
|
||||
SHOW_ON_ABOUT=1
|
||||
SHOW_ON_ABOUT=0
|
||||
|
||||
VIDEOBRIDGE_PORT=5347
|
||||
JITSI_ONION_PORT=8102
|
||||
|
@ -256,6 +256,11 @@ function install_jitsi {
|
|||
apt-get -yq install jitsi-meet jitsi-meet-prosody
|
||||
|
||||
jitsi_nginx_site=/etc/nginx/sites-available/${JITSI_DOMAIN_NAME}
|
||||
|
||||
if [ -f ${jitsi_nginx_site}.conf ]; then
|
||||
rm ${jitsi_nginx_site}.conf
|
||||
fi
|
||||
|
||||
echo 'server_names_hash_bucket_size 64;' > $jitsi_nginx_site
|
||||
if [[ $ONION_ONLY == "no" ]]; then
|
||||
echo '' >> $jitsi_nginx_site
|
||||
|
|
Loading…
Reference in New Issue