publiccodenet / jitsi-community

A tool that allows users to sign up, create and run video calls on a self-hosted Jitsi instance. We use this to allow our community members to run calls on our infrastructure.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jitsi-community

This project allows users to sign up to a Jitsi instance using a web UI.

IMPORTANT WARNING: There is currently no automated way to migrate your users from the Prosody user database into the Django database. We had a small number of users that we migrated manually by recreating their user accounts in Django admin console.

The web UI is a Django instance. It repurposes Django's admin Console to provide a way to manage users. The regisitration-redux module provides a way for users to sign up, regisitration-redux is configured to require admin approval of new user accounts. To link Jitsi to the Django user database a Prosody module is supplied. To get the version of Prosody that ships as part of Ubuntu 20.04 to work with the SHA256 hashes that Django uses, the Prosody utils module, hashes.so, has to be replaced with a newer version. The requirements.txt includes a dependency for Gunicorn to serve Django. Also provided are systemd unit files for a socket and service to keep it running.

Licenses

The solution reuses code from various projects and as such those parts fall under following licences:

  • Code reused from Django - BSD-3-Clause
  • Code reused from Prosody and the Prosody community modules - MIT

All code not falling under the above is dual licensed under Apache-2.0 and MIT.

Directory structure

Directory Explanation
meet-accountmanager a Django application for user sign up
prosody contains files for Prosody
systemd unit files for services and socket
configuration example configuration files
util utility scripts

Installation using the deb

These instructions are for installation on Ubuntu 20.04. They assume that you already have a working Jitsi installation and mariadb is installed and ready to go. We followed these Digital Ocean community tutorials to set them up:

0. Download the files

Download the two archives:

  • meet-accountmanager.tar.xz
  • prosody-native-utils-amd64.tar.xz

From jitsi-community Releases.

You can use the command below to download a file, replace the <url copied from releases>:

curl -LO <url copied from releases>

1. Create a MariaDB database and users for our services.

Open the MariaDB client:

mariadb

In the following section change for the accountmanager and the Prosody database users. Run it to create the database:

CREATE DATABASE accountmanager CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci;

CREATE USER 'accountmanager'@'localhost' IDENTIFIED BY '<replace with password>';
GRANT CREATE, ALTER, INDEX, SELECT, UPDATE, INSERT, DELETE, REFERENCES ON accountmanager.* TO 'accountmanager'@'localhost';

CREATE USER 'prosody'@'localhost' IDENTIFIED BY '<replace with password>';
GRANT SELECT ON accountmanager.* TO 'prosody'@'localhost';

2. Install the meet-accountmanager Django app

2.1

Install the deb using apt. The meet-accountmanager service will be installed into /opt/meet-accountmanager

sudo apt install ./meet-accountmanager_<version_you_downloaded>.deb

2.2

Configure Django's database connection by editing /etc/meet-accountmanager/database.cnf:

sudo nano /etc/meet-accountmanager/database.cnf

2.3

Edit accountmanager/settings.py.

sudo nano /etc/meet-accountmanager/settings.py

Update the following lines to add the details for the email account that will be used by the meet-accountmanager to verify emails and send notifications during the user registration process.

EMAIL_HOST = ""
EMAIL_HOST_USER = ""
KEY = ""
EMAIL_PORT = 587
EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = ""

Update the line with the emails:

REGISTRATION_ADMINS = [('<change to name>', '<change to email address>')]

2.4

Use Django's manage.py to initialize the database:

cd /opt/meet-accountmanager
./manage.py makemigrations
./manage.py migrate

2.5

Add a Django admin user:

python manage.py createsuperuser

3. Setup the systemd unit files for meet-accountmanager

3.1

Restart the socket and service:

sudo systemctl enable --now meet-accountmanager.socket

3.2

Test the Django socket

sudo -u www-data curl --header "X-Forwarded-Proto: https" --unix-socket /run/meet-accountmanager.sock https:/accountmanager/accountmanager/login/

The Gunicorn service should be automatically started and you should see some HTML from your server in the terminal.

4. Update the Nginx configuration

4.1

Add the following to your Nginx configuration for the Jitsi Meet site. The file is located in /etc/nginx/sites-available and is probably named _<your site address>_.conf.

Add the following before the first server block:

upstream accountmanager {
    # fail_timeout=0 means we always retry an upstream even if it failed
    # to return a good HTTP response
    server unix:/run/meet-accountmanager.sock fail_timeout=0;
}

Add the following block after the location = /external_api.js block:

    location ~ ^/static2/(.*)$ {
        add_header 'Access-Control-Allow-Origin' '*';
        alias /opt/meet-accountmanager/static2/$1;
	# try_files $uri =404;
        # cache all versioned files
        if ($arg_v) {
          expires 1y;
        }
    }

Add the following block after the location = /xmpp-websocket block:

    location ^~ /accountmanager/ {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header Host $http_host;
        # we don't want nginx trying to do something clever with
        # redirects, we set the Host: header above already.
        proxy_set_header SCRIPT_NAME /accountmanager;
        proxy_redirect off;
        proxy_pass http://accountmanager;
    }

4.2

Test the nginx configuration:

sudo nginx -c /etc/nginx/nginx.conf -t

4.3

Reload the nginx configuration.

sudo systemctl reload nginx

5. Install the prosody modules

5.1

Install the lua dbi mysql package:

sudo apt install lua-dbi-mysql

5.2

Unzip the Prosody zip file.

tar -xJf prosody-native-utils-amd64.tar.xz

5.3

Replace hashes.so with a version of hashes.so taken from a more recent version of Prosody because we need SHA-256 support.

sudo mv /usr/lib/prosody/util/hashes.so /usr/lib/prosody/util/hashes.so.bak
sudo cp prosody/util-src/hashes.so /usr/lib/prosody/util/
sudo cp prosody/auth_module/mod_auth_sql_hashed.lua /usr/lib/prosody/modules/

6. Edit the Prosody configuration for the Jitsi instance.

6.1

Configure the Prosody instance to use the auth_sql_hashed module and add an auth_sql block containing the credentials for the Prosody MariaDB user you created earlier. In the configuration block for the Prosody host used by your Jitsi instance.

        authentication = "sql_hashed"
        auth_sql = { driver = "MySQL", database = "accountmanager", username = "prosody", password = "<prosody sql user password>", host = "localhost" }

6.2

Restart the Prosody instance.

sudo systemctl restart prosody

7. Test the installation

Test that a user that is added in Django can log into Jitsi.

References

The following sources were consulted to create the installation guide: Django documentation Gunicorn documentation on deployment django-registration-redux 2.9 documentation

About

A tool that allows users to sign up, create and run video calls on a self-hosted Jitsi instance. We use this to allow our community members to run calls on our infrastructure.


Languages

Language:JavaScript 35.2%Language:CSS 30.7%Language:HTML 22.4%Language:Python 7.8%Language:Lua 2.0%Language:C 1.7%Language:Makefile 0.1%