Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

16 linhas
423 B

  1. config.defaultLanguage = {{ matrix_jitsi_web_config_defaultLanguage|to_json }};
  2. if (!config.hasOwnProperty('p2p')) config.p2p = {% raw %}{}{% endraw %};
  3. {% if matrix_jitsi_web_stun_servers|length > 0 %}
  4. config.p2p.stunServers = [
  5. {% for url in matrix_jitsi_web_stun_servers %}
  6. { urls: {{ url|to_json }} }{% if not loop.last %},{% endif %}
  7. {% endfor %}
  8. ];
  9. {% endif %}
  10. {{ matrix_jitsi_web_custom_config_extension }}