Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
502 B

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