mirror of
https://git.anonymousland.org/deathrow/synapse-docker-deployment.git
synced 2024-10-01 11:49:56 -04:00
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
# Event sending requests
|
|
location ~ ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/redact {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
}
|
|
|
|
location ~ ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/send {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
}
|
|
|
|
location ~ ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/state/ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
}
|
|
|
|
|
|
location ~ ^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/(join|invite|leave|ban|unban|kick)$ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
|
|
}
|
|
|
|
location ~ ^/_matrix/client/(api/v1|r0|v3|unstable)/join/ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
|
|
}
|
|
|
|
location ~ ^/_matrix/client/(api/v1|r0|v3|unstable)/profile/ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
} |