Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

16 řádky
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 }}