matrix-synapse: Disable stream writing endpoints
These will require addiional work for the user to safely enable alongside multiple instances, so disable them by default
This commit is contained in:
parent
087f62ebc9
commit
5b30115cf6
2 changed files with 22 additions and 12 deletions
|
@ -6,7 +6,7 @@ icon: https://matrix.org/images/matrix-logo.svg
|
||||||
appVersion: 1.64.0
|
appVersion: 1.64.0
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
version: 2.6.1
|
version: 2.6.2
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Alexander Olofsson
|
- name: Alexander Olofsson
|
||||||
email: ace@haxalot.com
|
email: ace@haxalot.com
|
||||||
|
|
|
@ -436,20 +436,30 @@ workers:
|
||||||
- "/_matrix/client/(api/v1|r0|v3|unstable)/join/"
|
- "/_matrix/client/(api/v1|r0|v3|unstable)/join/"
|
||||||
- "/_matrix/client/(api/v1|r0|v3|unstable)/profile/"
|
- "/_matrix/client/(api/v1|r0|v3|unstable)/profile/"
|
||||||
|
|
||||||
## Account data requests
|
|
||||||
- "/_matrix/client/(r0|v3|unstable)/.*/tags"
|
|
||||||
- "/_matrix/client/(r0|v3|unstable)/.*/account_data"
|
|
||||||
|
|
||||||
## Receipts requests
|
|
||||||
- "/_matrix/client/(r0|v3|unstable)/rooms/.*/receipt"
|
|
||||||
- "/_matrix/client/(r0|v3|unstable)/rooms/.*/read_markers"
|
|
||||||
|
|
||||||
## Presence requests
|
|
||||||
- "/_matrix/client/(api/v1|r0|v3|unstable)/presence/"
|
|
||||||
|
|
||||||
## User directory search requests
|
## User directory search requests
|
||||||
- "/_matrix/client/(r0|v3|unstable)/user_directory/search"
|
- "/_matrix/client/(r0|v3|unstable)/user_directory/search"
|
||||||
|
|
||||||
|
## Worker event streams
|
||||||
|
## See https://matrix-org.github.io/synapse/latest/workers.html#stream-writers
|
||||||
|
##
|
||||||
|
|
||||||
|
## The typing event stream
|
||||||
|
# - "/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/typing"
|
||||||
|
|
||||||
|
## The to_device event stream
|
||||||
|
# - "/_matrix/client/(r0|v3|unstable)/sendToDevice/"
|
||||||
|
|
||||||
|
## The account_data event stream
|
||||||
|
# - "/_matrix/client/(r0|v3|unstable)/.*/tags"
|
||||||
|
# - "/_matrix/client/(r0|v3|unstable)/.*/account_data"
|
||||||
|
|
||||||
|
## The receipts event stream
|
||||||
|
# - "/_matrix/client/(r0|v3|unstable)/rooms/.*/receipt"
|
||||||
|
# - "/_matrix/client/(r0|v3|unstable)/rooms/.*/read_markers"
|
||||||
|
|
||||||
|
## The presence event stream
|
||||||
|
# - "/_matrix/client/(api/v1|r0|v3|unstable)/presence/"
|
||||||
|
|
||||||
paths:
|
paths:
|
||||||
## Federation requests
|
## Federation requests
|
||||||
- "/_matrix/federation/v1/event/"
|
- "/_matrix/federation/v1/event/"
|
||||||
|
|
Loading…
Reference in a new issue