Skip to content

Commit

Permalink
Add support for proxying /_synapse/admin APIs
Browse files Browse the repository at this point in the history
Fixes #191 (Github Issue).
  • Loading branch information
spantaleev committed May 29, 2019
1 parent 5361d3a commit 7d8dde8
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,25 @@ server {
}
{% endif %}

location /_synapse/admin {
{% if matrix_nginx_proxy_enabled %}
{# Use the embedded DNS resolver in Docker containers to discover the service #}
resolver 127.0.0.11 valid=5s;
set $backend "{{ matrix_nginx_proxy_proxy_matrix_client_api_addr_with_container }}";
proxy_pass http://$backend;
{% else %}
{# Generic configuration for use outside of our container setup #}
proxy_pass http://{{ matrix_nginx_proxy_proxy_matrix_client_api_addr_sans_container }};
{% endif %}

proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;

client_body_buffer_size 25M;
client_max_body_size {{ matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_size_mb }}M;
proxy_max_temp_file_size 0;
}

location / {
rewrite ^/$ /_matrix/static/ last;
}
Expand Down

0 comments on commit 7d8dde8

Please sign in to comment.