Matrix-application

This commit is contained in:
Yassine Aouam 2023-01-05 15:04:08 +01:00
parent 958306916b
commit b169a47fb5

View File

@ -1,6 +1,6 @@
# Endpoint update # Endpoint update
matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/env.j2 https://github.com/yassineaouam/matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/synapse/ext/s3-storage-provider/env.j2
{% if matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url %} {% if matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url %}
ENDPOINT={{ matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url }} ENDPOINT={{ matrix_synapse_ext_synapse_s3_storage_provider_config_endpoint_url }}
@ -12,7 +12,7 @@ If not, there won't be any need for the variable endpoints_url: '' to be shown w
# Serching users update # Serching users update
matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/synapse/homeserver.yaml.j2 https://github.com/yassineaouam/matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/synapse/homeserver.yaml.j2
{% if matrix_synapse_config_search_all_users %} {% if matrix_synapse_config_search_all_users %}
search_all_users: {{ matrix_synapse_config_search_all_users }} search_all_users: {{ matrix_synapse_config_search_all_users }}
@ -21,10 +21,12 @@ matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/synapse/homes
- This parameter allows us to search for users with only the first characters of the user's names. - This parameter allows us to search for users with only the first characters of the user's names.
Once you write the first character, options starting with that character begin to appear. Once you write the first character, options starting with that character begin to appear.
# log drive update # log drive update
matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/synapse/systemd/matrix-synapse-worker.service.j2 https://github.com/yassineaouam/matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/synapse/systemd/matrix-synapse-worker.service.j2
matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/goofys/systemd/matrix-goofys.service.j2
https://github.com/yassineaouam/matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/goofys/systemd/matrix-goofys.service.j2
{% if matrix_synapse_log_driver %} {% if matrix_synapse_log_driver %}
--log-driver={{ matrix_synapse_log_driver }} \ --log-driver={{ matrix_synapse_log_driver }} \
@ -32,4 +34,4 @@ matrix-docker-ansible-deploy/roles/custom/matrix-synapse/templates/goofys/system
--log-driver=none \ --log-driver=none \
{% endif %} {% endif %}
- I applied another condition on the --log-drive. If matrix_synapse_log_driver has a specific value, it should automatically be affected to the --log-drive. Else, it will get a none - I applied another condition on the --log-drive. If matrix_synapse_log_driver has a specific value, it should automatically be affected to the --log-drive. Else, it will get a none.