Enable (Traefik compression middleware)-assisted compression for Cinny, Element & Hydrogen

This commit is contained in:
Slavi Pantaleev
2024-11-14 15:53:58 +02:00
parent 5cad571296
commit 4a61bd49e3
10 changed files with 48 additions and 9 deletions

View File

@ -4,10 +4,11 @@
ansible.builtin.fail:
msg: >
You need to define a required configuration setting (`{{ item }}`) for using Element Web.
when: "vars[item] == ''"
when: "item.when | bool and vars[item.name] == ''"
with_items:
- matrix_client_element_default_hs_url
- matrix_client_element_container_network
- {'name': 'matrix_client_element_default_hs_url', when: true}
- {'name': 'matrix_client_element_container_network', when: true}
- {'name': 'matrix_client_element_container_labels_traefik_compression_middleware_name', when: "{{ matrix_client_element_container_labels_traefik_compression_middleware_enabled }}"}
- name: Fail if Element location sharing enabled, but no tile server defined
ansible.builtin.fail: