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.
 
 

22 righe
801 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/client"
  18. mode: 0644
  19. owner: "{{ matrix_user_username }}"
  20. group: "{{ matrix_user_username }}"