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

75 строки
3.8 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. ansible.builtin.fail:
  6. msg: "To self-build the Mautrix-Google Chat 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. - ansible.builtin.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. - ansible.builtin.set_fact:
  13. matrix_homeserver_container_runtime_injected_arguments: >
  14. {{
  15. matrix_homeserver_container_runtime_injected_arguments | default([])
  16. +
  17. ["--mount type=bind,src={{ matrix_mautrix_googlechat_config_path }}/registration.yaml,dst=/matrix-mautrix-googlechat-registration.yaml,ro"]
  18. }}
  19. matrix_homeserver_app_service_runtime_injected_config_files: >
  20. {{
  21. matrix_homeserver_app_service_runtime_injected_config_files | default([])
  22. +
  23. ["/matrix-mautrix-googlechat-registration.yaml"]
  24. }}
  25. when: matrix_mautrix_googlechat_enabled | bool
  26. - block:
  27. - name: Fail if matrix-nginx-proxy role already executed
  28. ansible.builtin.fail:
  29. msg: >-
  30. Trying to append Mautrix googlechat's reverse-proxying configuration to matrix-nginx-proxy,
  31. but it's pointless since the matrix-nginx-proxy role had already executed.
  32. To fix this, please change the order of roles in your playbook,
  33. so that the matrix-nginx-proxy role would run after the matrix-bridge-mautrix-googlechat role.
  34. when: matrix_nginx_proxy_role_executed | default(False) | bool
  35. - name: Generate Mautrix googlechat proxying configuration for matrix-nginx-proxy
  36. ansible.builtin.set_fact:
  37. matrix_mautrix_googlechat_matrix_nginx_proxy_configuration: |
  38. location {{ matrix_mautrix_googlechat_public_endpoint }} {
  39. {% if matrix_nginx_proxy_enabled | default(False) %}
  40. {# Use the embedded DNS resolver in Docker containers to discover the service #}
  41. resolver 127.0.0.11 valid=5s;
  42. set $backend "matrix-mautrix-googlechat:8080";
  43. proxy_pass http://$backend;
  44. {% else %}
  45. {# Generic configuration for use outside of our container setup #}
  46. proxy_pass http://127.0.0.1:9007;
  47. {% endif %}
  48. }
  49. - name: Register Mautrix googlechat proxying configuration with matrix-nginx-proxy
  50. ansible.builtin.set_fact:
  51. matrix_nginx_proxy_proxy_matrix_additional_server_configuration_blocks: |
  52. {{
  53. matrix_nginx_proxy_proxy_matrix_additional_server_configuration_blocks | default([])
  54. +
  55. [matrix_mautrix_googlechat_matrix_nginx_proxy_configuration]
  56. }}
  57. tags:
  58. - always
  59. when: matrix_mautrix_googlechat_enabled | bool
  60. - name: Warn about reverse-proxying if matrix-nginx-proxy not used
  61. ansible.builtin.debug:
  62. msg: >-
  63. NOTE: You've enabled the Mautrix googlechat bridge but are not using the matrix-nginx-proxy
  64. reverse proxy.
  65. Please make sure that you're proxying the `{{ matrix_mautrix_googlechat_public_endpoint }}`
  66. URL endpoint to the matrix-mautrix-googlechat container.
  67. You can expose the container's port using the `matrix_mautrix_googlechat_container_http_host_bind_port` variable.
  68. when: "matrix_mautrix_googlechat_enabled | bool and not matrix_nginx_proxy_enabled | default(False) | bool"