mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
28 lines
1.1 KiB
YAML
28 lines
1.1 KiB
YAML
---
|
|
|
|
jitsi_root_dir: /opt/jitsi
|
|
jitsi_jibri_user: jibri
|
|
|
|
jitsi_jibri_version: "{{ jitsi_version | default('9955') }}"
|
|
# Jibri has no release, nor tag, so use master
|
|
jitsi_jibri_archive_url: https://github.com/jitsi/jibri/archive/refs/heads/master.tar.gz
|
|
|
|
jitsi_jibri_domain: "{{ jitsi_domain | default(inventory_hostname) }}"
|
|
jitsi_jibri_auth_domain: "{{ jitsi_auth_domain | default('auth.' ~ jitsi_domain) }}"
|
|
jitsi_jibri_internal_auth_domain: internal.{{ jitsi_jibri_auth_domain }}
|
|
|
|
# XMPP password to connect to
|
|
jitsi_jibri_xmpp_server: "{{ jitsi_xmpp_server | default(inventory_hostname) }}"
|
|
jitsi_jibri_xmpp_user: jibri
|
|
jitsi_jibri_xmpp_domain: recorder.{{ jitsi_jibri_domain }}
|
|
# A random pass will be created if not defined
|
|
# jitsi_jibri_xmpp_pass: s3cr3t.
|
|
jitsi_jibri_recorder_xmpp_user: recorder
|
|
# jitsi_jibri_recorder_xmpp_pass: p@ssw0rd
|
|
|
|
# List of email address which will be notified when a recording is finished
|
|
jitsi_jibri_recording_notify: []
|
|
# Base URL where you can reach your Jitsi host.
|
|
# Might need to be adjusted if running behing a reverse proxy
|
|
jitsi_jibri_recordings_base_url: https://{{ inventory_hostname }}/recordings
|