Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

28 строки
1.4 KiB

  1. # Enable this to add support for matrix-corporal.
  2. # See: https://github.com/devture/matrix-corporal
  3. matrix_corporal_enabled: false
  4. # Controls whether the matrix-corporal web server's ports are exposed outside of the container.
  5. # Normally, matrix-nginx-proxy is enabled and nginx can reach matrix-corporal over the container network.
  6. # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
  7. # matrix-corporal's web-server ports to the local host (`127.0.0.1:41080` and `127.0.0.1:41081`).
  8. matrix_corporal_container_expose_ports: "{{ not matrix_nginx_proxy_enabled }}"
  9. matrix_corporal_docker_image: "devture/matrix-corporal:1.2.2"
  10. matrix_corporal_base_path: "{{ matrix_base_data_path }}/corporal"
  11. matrix_corporal_config_dir_path: "{{ matrix_corporal_base_path }}/config"
  12. matrix_corporal_cache_dir_path: "{{ matrix_corporal_base_path }}/cache"
  13. matrix_corporal_var_dir_path: "{{ matrix_corporal_base_path }}/var"
  14. matrix_corporal_matrix_timeout_milliseconds: 45000
  15. matrix_corporal_reconciliation_retry_interval_milliseconds: 30000
  16. matrix_corporal_reconciliation_user_id_local_part: "matrix-corporal"
  17. matrix_corporal_http_api_enabled: false
  18. matrix_corporal_http_api_auth_token: ""
  19. # Matrix Corporal policy provider configuration (goes directly into the configuration's `PolicyProvider` value)
  20. matrix_corporal_policy_provider_config: ""
  21. matrix_corporal_debug: false