mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-12-26 04:23:48 +03:00
nginx uses $host instead of $http_host
See https://trac.nginx.org/nginx/ticket/2468#comment:1
This commit is contained in:
parent
12ada1c86a
commit
8e52ff7560
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ server {
|
||||||
|
|
||||||
location /_matrix/ {
|
location /_matrix/ {
|
||||||
proxy_pass http://127.0.0.1:6167;
|
proxy_pass http://127.0.0.1:6167;
|
||||||
proxy_set_header Host $http_host;
|
proxy_set_header Host $host;
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
proxy_read_timeout 5m;
|
proxy_read_timeout 5m;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue