Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

72 Zeilen
3.6 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_mx_puppet_twitter_container_image_self_build and matrix_mx_puppet_twitter_enabled"
  8. - 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. - set_fact:
  13. matrix_synapse_container_extra_arguments: >
  14. {{ matrix_synapse_container_extra_arguments|default([]) }}
  15. +
  16. ["--mount type=bind,src={{ matrix_mx_puppet_twitter_config_path }}/registration.yaml,dst=/matrix-mx-puppet-twitter-registration.yaml,ro"]
  17. matrix_synapse_app_service_config_files: >
  18. {{ matrix_synapse_app_service_config_files|default([]) }}
  19. +
  20. {{ ["/matrix-mx-puppet-twitter-registration.yaml"] }}
  21. when: matrix_mx_puppet_twitter_enabled|bool
  22. - block:
  23. - name: Fail if matrix-nginx-proxy role already executed
  24. fail:
  25. msg: >-
  26. Trying to append Twitter Appservice'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-mx-puppet-twitter role.
  30. when: matrix_nginx_proxy_role_executed|default(False)|bool
  31. - name: Generate Matrix MX Puppet Twitter proxying configuration for matrix-nginx-proxy
  32. set_fact:
  33. matrix_mx_puppet_twitter_matrix_nginx_proxy_configuration: |
  34. location {{ matrix_mx_puppet_twitter_webhook_path }} {
  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_mx_puppet_twitter_appservice_address }}";
  39. proxy_pass $backend;
  40. {% else %}
  41. {# Generic configuration for use outside of our container setup #}
  42. proxy_pass http://127.0.0.1:{{ matrix_mx_puppet_twitter_appservice_port }};
  43. {% endif %}
  44. }
  45. - name: Register Twitter Appservice 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_mx_puppet_twitter_matrix_nginx_proxy_configuration]
  52. }}
  53. tags:
  54. - always
  55. when: matrix_mx_puppet_twitter_enabled|bool
  56. - name: Warn about reverse-proxying if matrix-nginx-proxy not used
  57. debug:
  58. msg: >-
  59. NOTE: You've enabled the Matrix Twitter bridge but are not using the matrix-nginx-proxy
  60. reverse proxy.
  61. Please make sure that you're proxying the `{{ matrix_mx_puppet_twitter_redirect_path }}`
  62. URL endpoint to the matrix-mx-puppet-twitter container.
  63. You can expose the container's port using the `matrix_mx_puppet_twitter_container_http_host_bind_port` variable.
  64. when: "matrix_mx_puppet_twitter_enabled|bool and not matrix_nginx_proxy_enabled|default(False)|bool"