2024-09-30 22:20:46 +10:00
---
2024-11-21 16:31:50 +02:00
# Project source code URL: https://github.com/livekit/livekit
2024-11-21 16:15:54 +02:00
livekit_server_enabled : false
2024-09-30 22:20:46 +10:00
2024-11-21 16:54:45 +02:00
livekit_server_identifier : livekit-server
2024-11-21 17:28:06 +02:00
livekit_server_uid : ''
livekit_server_gid : ''
2024-11-21 16:54:45 +02:00
livekit_server_base_path : "/{{ livekit_server_identifier }}"
2024-11-21 17:28:06 +02:00
livekit_server_config_path : "{{ livekit_server_base_path }}/config"
2024-09-30 22:20:46 +10:00
2024-11-21 16:31:50 +02:00
# renovate: datasource=docker depName=livekit/livekit-server
livekit_server_version : v1.8.0
2024-09-30 22:20:46 +10:00
2024-11-21 16:37:01 +02:00
livekit_server_hostname : ""
2024-11-21 16:54:45 +02:00
livekit_server_path_prefix : /
2024-11-21 16:37:01 +02:00
2024-11-21 16:54:45 +02:00
livekit_server_container_network : "{{ livekit_server_identifier }}"
2024-09-30 22:20:46 +10:00
2024-11-21 16:31:50 +02:00
livekit_server_container_additional_networks : "{{ livekit_server_container_additional_networks_auto + livekit_server_container_additional_networks_custom }}"
livekit_server_container_additional_networks_auto : [ ]
livekit_server_container_additional_networks_custom : [ ]
livekit_server_container_image_self_build : false
livekit_server_container_repo : "https://github.com/livekit/livekit.git"
livekit_server_container_repo_version : "{{ 'main' if livekit_server_version == 'latest' else livekit_server_version }}"
livekit_server_container_src_files_path : "{{ livekit_server_base_path }}/container-src"
2024-09-30 22:20:46 +10:00
2024-11-21 16:37:01 +02:00
livekit_server_container_image : "{{ livekit_server_container_image_name_prefix }}livekit/livekit-server:{{ livekit_server_version }}"
2024-11-21 16:31:50 +02:00
livekit_server_container_image_name_prefix : "{{ 'localhost/' if livekit_server_container_image_self_build else 'docker.io/' }}"
livekit_server_container_image_force_pull : "{{ livekit_server_container_image.endswith(':latest') }}"
2024-09-30 22:20:46 +10:00
2024-11-21 16:15:54 +02:00
livekit_server_container_labels_traefik_enabled : true
livekit_server_container_labels_traefik_docker_network : "{{ livekit_server_container_network }}"
livekit_server_container_labels_traefik_hostname : "{{ livekit_server_hostname }}"
2024-09-30 22:20:46 +10:00
# The path prefix must either be `/` or not end with a slash (e.g. `/element`).
2024-11-21 16:15:54 +02:00
livekit_server_container_labels_traefik_path_prefix : "{{ livekit_server_path_prefix }}"
livekit_server_container_labels_traefik_rule : "Host(`{{ livekit_server_container_labels_traefik_hostname }}`){% if livekit_server_container_labels_traefik_path_prefix != '/' %} && PathPrefix(`{{ livekit_server_container_labels_traefik_path_prefix }}`){% endif %}"
livekit_server_container_labels_traefik_priority : 0
livekit_server_container_labels_traefik_entrypoints : web-secure
livekit_server_container_labels_traefik_tls : "{{ livekit_server_container_labels_traefik_entrypoints != 'web' }}"
livekit_server_container_labels_traefik_tls_certResolver : default # noqa var-naming
2024-09-30 22:20:46 +10:00
# Controls which additional headers to attach to all HTTP responses.
2024-11-21 16:15:54 +02:00
# To add your own headers, use `livekit_server_container_labels_traefik_additional_response_headers_custom`
livekit_server_container_labels_traefik_additional_response_headers : "{{ livekit_server_container_labels_traefik_additional_response_headers_auto | combine(livekit_server_container_labels_traefik_additional_response_headers_custom) }}"
livekit_server_container_labels_traefik_additional_response_headers_auto : |
2024-10-01 17:04:11 +10:00
{{
{}
2024-11-21 16:15:54 +02:00
| combine ({'X-XSS-Protection': livekit_server_http_header_xss_protection} if livekit_server_http_header_xss_protection else {})
| combine ({'X-Frame-Options': livekit_server_http_header_frame_options} if livekit_server_http_header_frame_options else {})
| combine ({'X-Content-Type-Options': livekit_server_http_header_content_type_options} if livekit_server_http_header_content_type_options else {})
| combine ({'Content-Security-Policy': livekit_server_http_header_content_security_policy} if livekit_server_http_header_content_security_policy else {})
| combine ({'Permission-Policy': livekit_server_http_header_content_permission_policy} if livekit_server_http_header_content_permission_policy else {})
| combine ({'Strict-Transport-Security': livekit_server_http_header_strict_transport_security} if livekit_server_http_header_strict_transport_security and livekit_server_container_labels_traefik_tls else {})
2024-10-01 17:04:11 +10:00
}}
2024-11-21 16:15:54 +02:00
livekit_server_container_labels_traefik_additional_response_headers_custom : {}
2024-09-30 22:20:46 +10:00
# matrix_client_element_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
# See `../templates/labels.j2` for details.
#
# Example:
# matrix_client_element_container_labels_additional_labels: |
# my.label=1
# another.label="here"
2024-11-21 16:15:54 +02:00
livekit_server_container_labels_additional_labels : ''
2024-09-30 22:20:46 +10:00
# A list of extra arguments to pass to the container
2024-11-21 16:15:54 +02:00
livekit_server_container_extra_arguments : [ ]
2024-09-30 22:20:46 +10:00
# Additional environment variables for the container
2024-11-21 16:15:54 +02:00
livekit_server_environment_variables_additional : {}
2024-09-30 22:20:46 +10:00
# List of systemd services that matrix-element-call.service depends on
2024-11-21 16:15:54 +02:00
livekit_server_systemd_required_services_list : "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
2024-09-30 22:20:46 +10:00
# Specifies the value of the `X-XSS-Protection` header
# Stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.
#
# Learn more about it is here:
# - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection
# - https://portswigger.net/web-security/cross-site-scripting/reflected
2024-11-21 16:15:54 +02:00
livekit_server_http_header_xss_protection : ''
2024-09-30 22:20:46 +10:00
# Specifies the value of the `X-Frame-Options` header which controls whether framing can happen.
# See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
2024-11-21 16:15:54 +02:00
livekit_server_http_header_frame_options : ''
2024-09-30 22:20:46 +10:00
# Specifies the value of the `X-Content-Type-Options` header.
# See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
2024-11-21 16:15:54 +02:00
livekit_server_http_header_content_type_options : ''
2024-09-30 22:20:46 +10:00
# Specifies the value of the `Content-Security-Policy` header.
# See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
2024-11-21 16:15:54 +02:00
livekit_server_http_header_content_security_policy : ''
2024-09-30 22:20:46 +10:00
# Specifies the value of the `Permission-Policy` header.
# See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permission-Policy
2024-11-21 16:15:54 +02:00
livekit_server_http_header_content_permission_policy : ''
2024-09-30 22:20:46 +10:00
# Specifies the value of the `Strict-Transport-Security` header.
# See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
2024-11-21 16:15:54 +02:00
livekit_server_http_header_strict_transport_security : ''
2024-09-30 22:20:46 +10:00
# Controls whether to send a "Permissions-Policy interest-cohort=();" header along with all responses
#
# Learn more about what it is here:
# - https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea
# - https://paramdeo.com/blog/opting-your-website-out-of-googles-floc-network
# - https://amifloced.org/
#
# Of course, a better solution is to just stop using browsers (like Chrome), which participate in such tracking practices.
2024-11-21 16:15:54 +02:00
# See: `livekit_server_content_permission_policy`
livekit_server_floc_optout_enabled : false
2024-09-30 22:20:46 +10:00
# Controls if HSTS preloading is enabled
#
# In its strongest and recommended form, the [HSTS policy](https://www.chromium.org/hsts) includes all subdomains, and
# indicates a willingness to be "preloaded" into browsers:
# `Strict-Transport-Security: max-age=31536000; includeSubDomains; preload`
# For more information visit:
# - https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
# - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
# - https://hstspreload.org/#opt-in
2024-11-21 16:15:54 +02:00
# See: `livekit_server_http_header_strict_transport_security`
livekit_server_hsts_preload_enabled : true
2024-11-21 16:54:45 +02:00
2024-11-21 17:28:06 +02:00
# Controls the `port` configuration property.
livekit_server_config_port : 7880
# Controls the `rtc.tcp_port` configuration property
livekit_server_config_rtc_tcp_port : 7881
# Controls the `rtc.port_range_start` configuration property
livekit_server_config_rtc_port_range_start : 50100
# Controls the `rtc.port_range_end` configuration property
livekit_server_config_rtc_port_range_end : 50200
# Controls the `rtc.use_external_ip` configuration property
livekit_server_config_rtc_use_external_ip : true
# Controls the `keys` configuration property.
livekit_server_config_keys : "{{ livekit_server_config_keys_auto | combine(livekit_server_config_keys_custom, recursive=True) }}"
livekit_server_config_keys_auto : {}
livekit_server_config_keys_custom : {}