Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LQDN Adminsys
piops-roles
Matrix Docker Ansible Deploy
Commits
0faad74a
Commit
0faad74a
authored
Sep 07, 2021
by
Slavi Pantaleev
Browse files
Upgrade Synapse (1.41.1 -> 1.42.0)
parent
ae6caf15
Changes
3
Hide whitespace changes
Inline
Side-by-side
roles/matrix-synapse/defaults/main.yml
View file @
0faad74a
...
...
@@ -15,8 +15,8 @@ matrix_synapse_docker_image_name_prefix: "{{ 'localhost/' if matrix_synapse_cont
# amd64 gets released first.
# arm32 relies on self-building, so the same version can be built immediately.
# arm64 users need to wait for a prebuilt image to become available.
matrix_synapse_version
:
v1.4
1.1
matrix_synapse_version_arm64
:
v1.4
1.1
matrix_synapse_version
:
v1.4
2.0
matrix_synapse_version_arm64
:
v1.4
2.0
matrix_synapse_docker_image_tag
:
"
{{
matrix_synapse_version
if
matrix_architecture
in
['arm32',
'amd64']
else
matrix_synapse_version_arm64
}}"
matrix_synapse_docker_image_force_pull
:
"
{{
matrix_synapse_docker_image.endswith(':latest')
}}"
...
...
roles/matrix-synapse/templates/synapse/homeserver.yaml.j2
View file @
0faad74a
...
...
@@ -83,20 +83,6 @@ presence:
#
enabled
:
{{
matrix_synapse_presence_enabled|to_json
}}
# Presence routers are third-party modules that can specify additional logic
# to where presence updates from users are routed.
#
presence_router
:
# The custom module's class. Uncomment to use a custom presence router module.
#
#module: "my_custom_router.PresenceRouter"
# Configuration options of the custom module. Refer to your module's
# documentation for available options.
#
#config:
# example_option: 'something'
# Whether to require authentication to retrieve profile data (avatars,
# display names) of other users through the client API. Defaults to
# 'false'. Note that profile data is also available via the federation
...
...
@@ -839,6 +825,8 @@ log_config: "/data/{{ matrix_server_fqn_matrix }}.log.config"
# is using
# - one for registration that ratelimits registration requests based on the
# client's IP address.
# - one for checking the validity of registration tokens that ratelimits
# requests based on the client's IP address.
# - one for login that ratelimits login requests based on the client's IP
# address.
# - one for login that ratelimits login requests based on the account the
...
...
@@ -869,6 +857,10 @@ rc_message: {{ matrix_synapse_rc_message|to_json }}
# burst_count: 3
rc_registration
:
{{
matrix_synapse_rc_registration|to_json
}}
#
#rc_registration_token_validity:
# per_second: 0.1
# burst_count: 5
#
#rc_login:
# address:
# per_second: 0.17
...
...
@@ -1228,6 +1220,15 @@ allowed_local_3pids: {{ matrix_synapse_allowed_local_3pids|to_json }}
#
#enable_3pid_lookup: true
# Require users to submit a token during registration.
# Tokens can be managed using the admin API:
# https://matrix-org.github.io/synapse/latest/usage/administration/admin_api/registration_tokens.html
# Note that `enable_registration` must be set to `true`.
# Disabling this option will not delete any tokens previously generated.
# Defaults to false. Uncomment the following to require tokens:
#
#registration_requires_token: true
# If set, allows registration of standard or admin accounts by anyone who
# has the shared secret, even if registration is otherwise disabled.
#
...
...
roles/matrix-synapse/vars/workers.yml
View file @
0faad74a
...
...
@@ -59,6 +59,7 @@ matrix_synapse_workers_generic_worker_endpoints:
# Registration/login requests
-
^/_matrix/client/(api/v1|r0|unstable)/login$
-
^/_matrix/client/(r0|unstable)/register$
-
^/_matrix/client/unstable/org.matrix.msc3231/register/org.matrix.msc3231.login.registration_token/validity$
# Event sending requests
-
^/_matrix/client/(api/v1|r0|unstable)/rooms/.*/redact
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment