2022-02-05 20:32:54 +00:00
|
|
|
---
|
2022-07-18 07:39:08 +00:00
|
|
|
- ansible.builtin.set_fact:
|
2018-09-17 07:51:46 +00:00
|
|
|
matrix_well_known_file_path: "{{ matrix_static_files_base_path }}/.well-known/matrix/client"
|
|
|
|
|
|
|
|
# We need others to be able to read these directories too,
|
|
|
|
# so that matrix-nginx-proxy's nginx user can access the files.
|
|
|
|
#
|
|
|
|
# For running with another webserver, we recommend being part of the `matrix` group.
|
|
|
|
- name: Ensure Matrix static-files path exists
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2018-09-17 07:51:46 +00:00
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0755
|
|
|
|
owner: "{{ matrix_user_username }}"
|
2020-05-01 17:59:32 +00:00
|
|
|
group: "{{ matrix_user_groupname }}"
|
2018-09-17 07:51:46 +00:00
|
|
|
with_items:
|
2019-01-12 15:53:00 +00:00
|
|
|
- "{{ matrix_static_files_base_path }}/.well-known/matrix"
|
2018-09-17 07:51:46 +00:00
|
|
|
|
|
|
|
- name: Ensure Matrix /.well-known/matrix/client configured
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2018-09-17 07:51:46 +00:00
|
|
|
src: "{{ role_path }}/templates/well-known/matrix-client.j2"
|
2019-01-12 15:53:00 +00:00
|
|
|
dest: "{{ matrix_static_files_base_path }}/.well-known/matrix"
|
2018-09-17 07:51:46 +00:00
|
|
|
mode: 0644
|
|
|
|
owner: "{{ matrix_user_username }}"
|
2022-02-05 20:32:54 +00:00
|
|
|
group: "{{ matrix_user_groupname }}"
|