Matrix Docker Ansible eploy
Você não pode selecionar mais de 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.
 
 

30 linhas
846 B

  1. #jinja2: lstrip_blocks: "True"
  2. worker_app: synapse.app.{{ item.worker }}
  3. worker_name: {{ item.worker ~ ':' ~ item.port }}
  4. worker_replication_host: 127.0.0.1
  5. worker_replication_http_port: {{ matrix_synapse_replication_http_port }}
  6. {% if item.worker not in [ 'appservice', 'federation_sender', 'pusher' ] %}
  7. worker_listeners:
  8. - type: http
  9. port: {{ item.port }}
  10. resources:
  11. - names:
  12. {% if item.worker in [ 'generic_worker', 'frontend_proxy', 'user_dir' ] %}
  13. - client
  14. {% endif %}
  15. {% if item.worker in [ 'generic_worker' ] %}
  16. - federation
  17. {% elif item.worker in [ 'media_repository' ] %}
  18. - media
  19. {% endif %}
  20. {% endif %}
  21. {% if item.worker == 'frontend_proxy' %}
  22. worker_main_http_uri: http://127.0.0.1:8008
  23. {% endif %}
  24. worker_daemonize: false
  25. worker_log_config: /data/{{ matrix_server_fqn_matrix }}.log.config