mirror of
https://github.com/c0mmando/hackliberty-conf.git
synced 2025-01-04 04:10:57 -05:00
26 lines
951 B
Plaintext
26 lines
951 B
Plaintext
## Encryption requests
|
|
location ~ ^/_matrix/client/(r0|v3|unstable)/keys/query$ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
}
|
|
|
|
location ~ ^/_matrix/client/(r0|v3|unstable)/keys/changes$ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
}
|
|
|
|
location ~ ^/_matrix/client/(r0|v3|unstable)/keys/claim$ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
}
|
|
|
|
location ~ ^/_matrix/client/(r0|v3|unstable)/room_keys/ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
}
|
|
|
|
# Note that ^/_matrix/client/(r0|v3|unstable)/keys/upload/ requires `worker_main_http_uri`
|
|
location ~ ^/_matrix/client/(r0|v3|unstable)/keys/upload/ {
|
|
include /config/nginx/include.d/synapse-proxy.conf;
|
|
proxy_pass http://generic_worker_lc;
|
|
} |