mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-02-01 09:21:00 +03:00
Compare commits
3 Commits
03607e8dcd
...
58688bf538
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
58688bf538 | ||
|
|
14c32cad77 | ||
|
|
afa003fadd |
@@ -65,7 +65,3 @@ ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
|
|||||||
The shortcut commands with the [`just` program](just.md) are also available: `just install-all` or `just setup-all`
|
The shortcut commands with the [`just` program](just.md) are also available: `just install-all` or `just setup-all`
|
||||||
|
|
||||||
`just install-all` is useful for maintaining your setup quickly ([2x-5x faster](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-runtime) than `just setup-all`) when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. Note these shortcuts run the `ensure-matrix-users-created` tag too.
|
`just install-all` is useful for maintaining your setup quickly ([2x-5x faster](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-runtime) than `just setup-all`) when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. Note these shortcuts run the `ensure-matrix-users-created` tag too.
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
Once installed, Element Call integrates seamlessly with Matrix clients like [Element Web](configuring-playbook-client-element-web.md) and Element X on mobile (iOS and Android).
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ matrix_postmoogle_docker_repo_version: "{{ 'main' if matrix_postmoogle_version =
|
|||||||
matrix_postmoogle_docker_src_files_path: "{{ matrix_base_data_path }}/postmoogle/docker-src"
|
matrix_postmoogle_docker_src_files_path: "{{ matrix_base_data_path }}/postmoogle/docker-src"
|
||||||
|
|
||||||
# renovate: datasource=docker depName=ghcr.io/etkecc/postmoogle
|
# renovate: datasource=docker depName=ghcr.io/etkecc/postmoogle
|
||||||
matrix_postmoogle_version: v0.9.26
|
matrix_postmoogle_version: v0.9.27
|
||||||
matrix_postmoogle_docker_image: "{{ matrix_postmoogle_docker_image_registry_prefix }}etkecc/postmoogle:{{ matrix_postmoogle_version }}"
|
matrix_postmoogle_docker_image: "{{ matrix_postmoogle_docker_image_registry_prefix }}etkecc/postmoogle:{{ matrix_postmoogle_version }}"
|
||||||
matrix_postmoogle_docker_image_registry_prefix: "{{ 'localhost/' if matrix_postmoogle_container_image_self_build else matrix_postmoogle_docker_image_registry_prefix_upstream }}"
|
matrix_postmoogle_docker_image_registry_prefix: "{{ 'localhost/' if matrix_postmoogle_container_image_self_build else matrix_postmoogle_docker_image_registry_prefix_upstream }}"
|
||||||
matrix_postmoogle_docker_image_registry_prefix_upstream: "{{ matrix_postmoogle_docker_image_registry_prefix_upstream_default }}"
|
matrix_postmoogle_docker_image_registry_prefix_upstream: "{{ matrix_postmoogle_docker_image_registry_prefix_upstream_default }}"
|
||||||
|
|||||||
@@ -1544,6 +1544,17 @@ matrix_s3_media_store_path: "{{ matrix_synapse_media_store_path }}"
|
|||||||
# Controls whether the self-check feature should validate SSL certificates.
|
# Controls whether the self-check feature should validate SSL certificates.
|
||||||
matrix_synapse_self_check_validate_certificates: true
|
matrix_synapse_self_check_validate_certificates: true
|
||||||
|
|
||||||
|
# Controls whether server notices are enabled.
|
||||||
|
matrix_synapse_server_notices_enabled: false
|
||||||
|
# The localpart of the user that will send server notices, this user will be created if it doesn't exist.
|
||||||
|
matrix_synapse_server_notices_system_mxid_localpart: "notices"
|
||||||
|
# The display name of the user that will send server notices.
|
||||||
|
matrix_synapse_server_notices_system_mxid_display_name: "Server Notices"
|
||||||
|
# Optional avatar URL for the user that will send server notices, example: mxc://example.com/abc123
|
||||||
|
matrix_synapse_server_notices_system_mxid_avatar_url: ~
|
||||||
|
# The name of the room where server notices will be sent, this room will be created if it doesn't exist.
|
||||||
|
matrix_synapse_server_notices_room_name: "Server Notices"
|
||||||
|
|
||||||
# Controls whether searching the public room list is enabled.
|
# Controls whether searching the public room list is enabled.
|
||||||
matrix_synapse_enable_room_list_search: true
|
matrix_synapse_enable_room_list_search: true
|
||||||
|
|
||||||
|
|||||||
@@ -2731,6 +2731,15 @@ stats:
|
|||||||
# system_mxid_display_name: "Server Notices"
|
# system_mxid_display_name: "Server Notices"
|
||||||
# system_mxid_avatar_url: "mxc://example.com/oumMVlgDnLYFaPVkExemNVVZ"
|
# system_mxid_avatar_url: "mxc://example.com/oumMVlgDnLYFaPVkExemNVVZ"
|
||||||
# room_name: "Server Notices"
|
# room_name: "Server Notices"
|
||||||
|
{% if matrix_synapse_server_notices_enabled %}
|
||||||
|
server_notices:
|
||||||
|
system_mxid_localpart: {{ matrix_synapse_server_notices_system_mxid_localpart | string | to_json }}
|
||||||
|
system_mxid_display_name: {{ matrix_synapse_server_notices_system_mxid_display_name | string | to_json }}
|
||||||
|
{% if matrix_synapse_server_notices_system_mxid_avatar_url %}
|
||||||
|
system_mxid_avatar_url: {{ matrix_synapse_server_notices_system_mxid_avatar_url | string | to_json }}
|
||||||
|
{% endif %}
|
||||||
|
room_name: {{ matrix_synapse_server_notices_room_name | string | to_json }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user