You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
Django/Jinja
40 lines
1.1 KiB
Django/Jinja
CONFIG={{ jitsi_config_dir }}
|
|
|
|
HTTP_PORT={{ jitsi_http_port }}
|
|
HTTPS_PORT={{ jitsi_https_port }}
|
|
|
|
TZ={{ jitsi_timezone }}
|
|
|
|
PUBLIC_URL={{ jitsi_public_url }}
|
|
|
|
JVB_PORT={{ jitsi_jvb_port }}
|
|
|
|
{% if jitsi_jvb_advertise_ips | length > 0 %}
|
|
JVB_ADVERTISE_IPS={{ jitsi_jvb_advertise_ips | join(',') }}
|
|
{% endif %}
|
|
|
|
RESTART_POLICY={{ jitsi_restart_policy }}
|
|
|
|
JITSI_IMAGE_REPO={{ jitsi_image_repo }}
|
|
|
|
{% if jitsi_image_version %}
|
|
JITSI_IMAGE_VERSION={{ jitsi_image_version }}
|
|
{% endif %}
|
|
|
|
ENABLE_HTTP_REDIRECT={{ 1 if jitsi_enable_http_redirect else 0 }}
|
|
|
|
ENABLE_AUTH={{ 1 if jitsi_enable_auth else 0 }}
|
|
ENABLE_GUESTS={{ 1 if jitsi_enable_guests else 0 }}
|
|
AUTH_TYPE={{ jitsi_auth_type }}
|
|
ENABLE_AUTO_LOGIN={{ 1 if jitsi_enable_auto_login else 0 }}
|
|
|
|
JICOFO_AUTH_PASSWORD={{ jitsi_jicofo_auth_password }}
|
|
JVB_AUTH_PASSWORD={{ jitsi_jvb_auth_password }}
|
|
JIGASI_XMPP_PASSWORD={{ jitsi_jigasi_xmpp_password }}
|
|
JIGASI_TRANSCRIBER_PASSWORD={{ jitsi_jigasi_transcriber_password }}
|
|
JIBRI_RECORDER_PASSWORD={{ jitsi_jibri_recorder_password }}
|
|
JIBRI_XMPP_PASSWORD={{ jitsi_jibri_xmpp_password }}
|
|
|
|
{% for key, value in jitsi_extra_env.items() %}
|
|
{{ key }}={{ value }}
|
|
{% endfor %} |