FIX: Set the Host header in the nginx.conf upstream block

Using e.g. `proxy_pass http://discourse` resets the Host header on the upstream
request to `discourse`.

This would break multisites, so we don't want that; the most effetive way to
ensure it's set properly is to `set_header` in the upstream block.
This commit is contained in:
Michael Brown 2024-12-19 14:53:04 -05:00 committed by Michael Brown
parent 0e767585d6
commit d8a363b60e

View file

@ -146,6 +146,7 @@ run:
filename: "/etc/nginx/conf.d/discourse.conf"
from: /upstream[^\}]+\}/m
to: "upstream discourse {
set_header Host $http_host;
server 127.0.0.1:3000;
}"