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:
parent
0e767585d6
commit
d8a363b60e
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
}"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue