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.
 
 

76 wiersze
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 mx-puppet-twitter 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_mx_puppet_twitter_container_image_self_build and matrix_mx_puppet_twitter_enabled"
  8. - ansible.builtin.set_fact:
  9. matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-mx-puppet-twitter.service'] }}"
  10. when: matrix_mx_puppet_twitter_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_mx_puppet_twitter_config_path }}/registration.yaml,dst=/matrix-mx-puppet-twitter-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-mx-puppet-twitter-registration.yaml"]
  24. }}
  25. when: matrix_mx_puppet_twitter_enabled | bool
  26. - block:
  27. - name: Fail if matrix-nginx-proxy role already executed
  28. ansible.builtin.fail:
  29. msg: >-
  30. Trying to append Twitter Appservice'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-mx-puppet-twitter role.
  34. when: matrix_nginx_proxy_role_executed | default(False) | bool
  35. - name: Generate Matrix MX Puppet Twitter proxying configuration for matrix-nginx-proxy
  36. ansible.builtin.set_fact:
  37. matrix_mx_puppet_twitter_matrix_nginx_proxy_configuration: |
  38. location {{ matrix_mx_puppet_twitter_webhook_path }} {
  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_mx_puppet_twitter_appservice_address }}";
  43. proxy_pass $backend;
  44. {% else %}
  45. {# Generic configuration for use outside of our container setup #}
  46. proxy_pass http://127.0.0.1:{{ matrix_mx_puppet_twitter_appservice_port }};
  47. {% endif %}
  48. }
  49. - name: Register Twitter Appservice 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_mx_puppet_twitter_matrix_nginx_proxy_configuration]
  56. }}
  57. tags:
  58. - always
  59. when: matrix_mx_puppet_twitter_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 Matrix Twitter bridge but are not using the matrix-nginx-proxy
  64. reverse proxy.
  65. Please make sure that you're proxying the `{{ matrix_mx_puppet_twitter_redirect_path }}`
  66. URL endpoint to the matrix-mx-puppet-twitter container.
  67. You can expose the container's port using the `matrix_mx_puppet_twitter_container_http_host_bind_port` variable.
  68. when: "matrix_mx_puppet_twitter_enabled | bool and not matrix_nginx_proxy_enabled | default(False) | bool"