File tree 3 files changed +17
-11
lines changed
3 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ matrix_synapse_docker_image_name_prefix: "{{ 'localhost/' if matrix_synapse_cont
15
15
# amd64 gets released first.
16
16
# arm32 relies on self-building, so the same version can be built immediately.
17
17
# arm64 users need to wait for a prebuilt image to become available.
18
- matrix_synapse_version : v1.47.1
19
- matrix_synapse_version_arm64 : v1.47.1
18
+ matrix_synapse_version : v1.48.0
19
+ matrix_synapse_version_arm64 : v1.48.0
20
20
matrix_synapse_docker_image_tag : " {{ matrix_synapse_version if matrix_architecture in ['arm32', 'amd64'] else matrix_synapse_version_arm64 }}"
21
21
matrix_synapse_docker_image_force_pull : " {{ matrix_synapse_docker_image.endswith(':latest') }}"
22
22
Original file line number Diff line number Diff line change @@ -667,8 +667,8 @@ tls_private_key_path: {{ matrix_synapse_tls_private_key_path|to_json }}
667
667
#
668
668
# federation_certificate_verification_whitelist:
669
669
# - lon.example.com
670
- # - *.domain.com
671
- # - *.onion
670
+ # - " *.domain.com"
671
+ # - " *.onion"
672
672
673
673
# List of custom certificate authorities for federation traffic.
674
674
#
@@ -2229,6 +2229,12 @@ sso:
2229
2229
#
2230
2230
# algorithm: "provided-by-your-issuer"
2231
2231
2232
+ # Name of the claim containing a unique identifier for the user.
2233
+ #
2234
+ # Optional, defaults to `sub`.
2235
+ #
2236
+ # subject_claim: "sub"
2237
+
2232
2238
# The issuer to validate the "iss" claim against.
2233
2239
#
2234
2240
# Optional, if provided the "iss" claim will be required and
@@ -2637,8 +2643,8 @@ user_directory:
2637
2643
# indexes were (re)built was before Synapse 1.44, you'll have to
2638
2644
# rebuild the indexes in order to search through all known users.
2639
2645
# These indexes are built the first time Synapse starts; admins can
2640
- # manually trigger a rebuild following the instructions at
2641
- # https://matrix-org.github.io/synapse/latest/user_directory .html
2646
+ # manually trigger a rebuild via API following the instructions at
2647
+ # https://matrix-org.github.io/synapse/latest/usage/administration/admin_api/background_updates .html#run
2642
2648
#
2643
2649
# Uncomment to return search results containing all known users, even if that
2644
2650
# user does not share a room with the requester.
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ matrix_synapse_workers_generic_worker_endpoints:
5
5
# expressions:
6
6
7
7
# Sync requests
8
- - ^/_matrix/client/(v2_alpha|r0|v3 )/sync$
9
- - ^/_matrix/client/(api/v1|v2_alpha|r0|v3 )/events$
10
- - ^/_matrix/client/(api/v1|r0|v3 )/initialSync$
11
- - ^/_matrix/client/(api/v1|r0|v3 )/rooms/[^/]+/initialSync$
8
+ - ^/_matrix/client/(v2_alpha|r0)/sync$
9
+ - ^/_matrix/client/(api/v1|v2_alpha|r0)/events$
10
+ - ^/_matrix/client/(api/v1|r0)/initialSync$
11
+ - ^/_matrix/client/(api/v1|r0)/rooms/[^/]+/initialSync$
12
12
13
13
# Federation requests
14
14
- ^/_matrix/federation/v1/event/
@@ -63,7 +63,7 @@ matrix_synapse_workers_generic_worker_endpoints:
63
63
64
64
# Registration/login requests
65
65
- ^/_matrix/client/(api/v1|r0|v3|unstable)/login$
66
- - ^/_matrix/client/(r0|v3| unstable)/register$
66
+ - ^/_matrix/client/(r0|unstable)/register$
67
67
- ^/_matrix/client/unstable/org.matrix.msc3231/register/org.matrix.msc3231.login.registration_token/validity$
68
68
69
69
# Event sending requests
You can’t perform that action at this time.
0 commit comments