mirror of
https://git.anonymousland.org/deathrow/synapse-docker-deployment.git
synced 2025-05-17 13:10:21 -04:00
22 lines
707 B
Text
22 lines
707 B
Text
# Typing
|
|
location ~ ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/typing {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://additional1;
|
|
}
|
|
|
|
# Device requests
|
|
location ~ ^/_matrix/client/(r0|v3|unstable)/sendToDevice/ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://additional1;
|
|
}
|
|
|
|
# Account data requests
|
|
location ~ ^/_matrix/client/(r0|v3|unstable)/.*/tags {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://additional1;
|
|
}
|
|
|
|
location ~ ^/_matrix/client/(r0|v3|unstable)/.*/account_data {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://additional1;
|
|
}
|