Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

71 wiersze
3.5 KiB

  1. ---
  2. # See https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/1070
  3. # and https://github.com/spantaleev/matrix-docker-ansible-deploy/commit/1ab507349c752042d26def3e95884f6df8886b74#commitcomment-51108407
  4. - name: Fail if trying to self-build on Ansible < 2.8
  5. fail:
  6. msg: "To self-build the Element image, you should use Ansible 2.8 or higher. See docs/ansible.md"
  7. when: "ansible_version.major == 2 and ansible_version.minor < 8 and matrix_mautrix_googlechat_container_image_self_build and matrix_mautrix_googlechat_enabled"
  8. - set_fact:
  9. matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-mautrix-googlechat.service'] }}"
  10. when: matrix_mautrix_googlechat_enabled|bool
  11. # If the matrix-synapse role is not used, these variables may not exist.
  12. - set_fact:
  13. matrix_synapse_container_extra_arguments: >
  14. {{ matrix_synapse_container_extra_arguments|default([]) }}
  15. +
  16. ["--mount type=bind,src={{ matrix_mautrix_googlechat_config_path }}/registration.yaml,dst=/matrix-mautrix-googlechat-registration.yaml,ro"]
  17. matrix_synapse_app_service_config_files: >
  18. {{ matrix_synapse_app_service_config_files|default([]) }}
  19. +
  20. {{ ["/matrix-mautrix-googlechat-registration.yaml"] }}
  21. when: matrix_mautrix_googlechat_enabled|bool
  22. - block:
  23. - name: Fail if matrix-nginx-proxy role already executed
  24. fail:
  25. msg: >-
  26. Trying to append Mautrix googlechat's reverse-proxying configuration to matrix-nginx-proxy,
  27. but it's pointless since the matrix-nginx-proxy role had already executed.
  28. To fix this, please change the order of roles in your playbook,
  29. so that the matrix-nginx-proxy role would run after the matrix-bridge-mautrix-googlechat role.
  30. when: matrix_nginx_proxy_role_executed|default(False)|bool
  31. - name: Generate Mautrix googlechat proxying configuration for matrix-nginx-proxy
  32. set_fact:
  33. matrix_mautrix_googlechat_matrix_nginx_proxy_configuration: |
  34. location {{ matrix_mautrix_googlechat_public_endpoint }} {
  35. {% if matrix_nginx_proxy_enabled|default(False) %}
  36. {# Use the embedded DNS resolver in Docker containers to discover the service #}
  37. resolver 127.0.0.11 valid=5s;
  38. set $backend "matrix-mautrix-googlechat:8080";
  39. proxy_pass http://$backend;
  40. {% else %}
  41. {# Generic configuration for use outside of our container setup #}
  42. proxy_pass http://127.0.0.1:9007;
  43. {% endif %}
  44. }
  45. - name: Register Mautrix googlechat proxying configuration with matrix-nginx-proxy
  46. set_fact:
  47. matrix_nginx_proxy_proxy_matrix_additional_server_configuration_blocks: |
  48. {{
  49. matrix_nginx_proxy_proxy_matrix_additional_server_configuration_blocks|default([])
  50. +
  51. [matrix_mautrix_googlechat_matrix_nginx_proxy_configuration]
  52. }}
  53. tags:
  54. - always
  55. when: matrix_mautrix_googlechat_enabled|bool
  56. - name: Warn about reverse-proxying if matrix-nginx-proxy not used
  57. debug:
  58. msg: >-
  59. NOTE: You've enabled the Mautrix googlechat bridge but are not using the matrix-nginx-proxy
  60. reverse proxy.
  61. Please make sure that you're proxying the `{{ matrix_mautrix_googlechat_public_endpoint }}`
  62. URL endpoint to the matrix-mautrix-googlechat container.
  63. You can expose the container's port using the `matrix_mautrix_googlechat_container_http_host_bind_port` variable.
  64. when: "matrix_mautrix_googlechat_enabled|bool and not matrix_nginx_proxy_enabled|default(False)|bool"