Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

29 righe
874 B

  1. ---
  2. - name: Determine well-known files to check (Matrix)
  3. set_fact:
  4. well_known_file_checks:
  5. - path: /.well-known/matrix/client
  6. purpose: Client Discovery
  7. cors: true
  8. follow_redirects: false
  9. - block:
  10. - set_fact:
  11. well_known_file_check_matrix_server:
  12. path: /.well-known/matrix/server
  13. purpose: Server Discovery
  14. cors: false
  15. follow_redirects: true
  16. - name: Determine domains that we require certificates for (mxisd)
  17. set_fact:
  18. well_known_file_checks: "{{ well_known_file_checks + [well_known_file_check_matrix_server] }}"
  19. when: "matrix_well_known_matrix_server_enabled"
  20. - name: Perform well-known checks
  21. include_tasks: "{{ role_path }}/tasks/self_check_well_known_file.yml"
  22. with_items: "{{ well_known_file_checks }}"
  23. loop_control:
  24. loop_var: well_known_file_check