Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

47 行
2.4 KiB

  1. ---
  2. - name: Fail if matrix-nginx-proxy role already executed
  3. ansible.builtin.fail:
  4. msg: >-
  5. Trying to append Etherpad's reverse-proxying configuration to matrix-nginx-proxy,
  6. but it's pointless since the matrix-nginx-proxy role had already executed.
  7. To fix this, please change the order of roles in your playbook,
  8. so that the matrix-nginx-proxy role would run after the matrix-etherpad role.
  9. when: matrix_nginx_proxy_role_executed | default(False) | bool
  10. - name: Generate Etherpad proxying configuration for matrix-nginx-proxy
  11. ansible.builtin.set_fact:
  12. etherpad_matrix_nginx_proxy_configuration: |
  13. rewrite ^{{ etherpad_nginx_proxy_dimension_integration_path_prefix }}$ {{ matrix_nginx_proxy_x_forwarded_proto_value }}://$server_name{{ etherpad_nginx_proxy_dimension_integration_path_prefix }}/ permanent;
  14. location {{ etherpad_nginx_proxy_dimension_integration_path_prefix }}/ {
  15. {% if matrix_nginx_proxy_enabled | default(False) %}
  16. {# Use the embedded DNS resolver in Docker containers to discover the service #}
  17. resolver 127.0.0.11 valid=5s;
  18. proxy_pass http://{{ etherpad_identifier }}:9001/;
  19. {# These are proxy directives needed specifically by Etherpad #}
  20. proxy_buffering off;
  21. proxy_http_version 1.1; # recommended with keepalive connections
  22. proxy_pass_header Server;
  23. proxy_set_header Host $host;
  24. proxy_set_header X-Forwarded-Proto {{ matrix_nginx_proxy_x_forwarded_proto_value }}; # for EP to set secure cookie flag when https is used
  25. # WebSocket proxying - from http://nginx.org/en/docs/http/websocket.html
  26. proxy_set_header Upgrade $http_upgrade;
  27. proxy_set_header Connection $connection_upgrade;
  28. {% else %}
  29. {# Generic configuration for use outside of our container setup #}
  30. # A good guide for setting up your Etherpad behind nginx:
  31. # https://docs.gandi.net/en/cloud/tutorials/etherpad_lite.html
  32. proxy_pass http://127.0.0.1:9001/;
  33. {% endif %}
  34. }
  35. - name: Register Etherpad proxying configuration with matrix-nginx-proxy
  36. ansible.builtin.set_fact:
  37. matrix_nginx_proxy_proxy_dimension_additional_server_configuration_blocks: |
  38. {{
  39. matrix_nginx_proxy_proxy_dimension_additional_server_configuration_blocks | default([])
  40. +
  41. [etherpad_matrix_nginx_proxy_configuration]
  42. }}