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

21 строка
793 B

  1. # We need others to be able to read these directories too,
  2. # so that matrix-nginx-proxy's nginx user can access the files.
  3. #
  4. # For running with another webserver, we recommend being part of the `matrix` group.
  5. - name: Ensure Matrix static-files path exists
  6. file:
  7. path: "{{ item }}"
  8. state: directory
  9. mode: 0755
  10. owner: "{{ matrix_user_username }}"
  11. group: "{{ matrix_user_username }}"
  12. with_items:
  13. - "{{ matrix_static_files_base_path }}/.well-known/matrix"
  14. - name: Ensure Matrix /.well-known/matrix/client configured
  15. template:
  16. src: "{{ role_path }}/templates/static-files/well-known/matrix-client.j2"
  17. dest: "{{ matrix_static_files_base_path }}/.well-known/matrix"
  18. mode: 0644
  19. owner: "{{ matrix_user_username }}"
  20. group: "{{ matrix_user_username }}"