Merge branch 'Glandos-next-patch-05490' into 'next'

nginx uses $host instead of $http_host

See merge request famedly/conduit!727
This commit is contained in:
Matthias Ahouansou 2024-11-03 23:57:29 +00:00
commit e952522a39

View File

@ -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;
} }