# jibri-queue **Repository Path**: mirrors_jitsi/jibri-queue ## Basic Information - **Project Name**: jibri-queue - **Description**: Implements user queues for Jibri. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jibri-queue ## Building ``` npm install npm run build ``` You can find the build in `dist/`. There's only one bundled file there - `main.js`. ## Runnning ``` npm start ``` or ``` node dist/main.js ``` ### Config.json You must specify the path to a `config.json` file as a first argument of the app. We read the following properties from there: - service - required. This will be a service URL to the xmpp server that we use. - domain - required. The domain of the xmpp server. - username - required. The username for the xmpp server connection. - password - required. The password for the xmpp server connection. - resource - required. The resource for the xmpp server connection. - jibriMUC - required. Configuration options for the jibri status MUC: - domain - required. The domain for the MUC component. - room - required. The name of the MUC with jibris. - jwt - required. Configuration options for the JWT generation. - privateKeyPath - required. The path to the private key. - keyid - required. The kid claim. - iss - required. The iss claim. - expiresIn - required. Period of time after which the JWT will expire. - debug - optional. Enable the debug log level.