fix: add Host header during proxy

This commit is contained in:
2022-12-23 23:01:34 +01:00
parent 7784834abc
commit 1f47a1deee

View File

@@ -11,6 +11,7 @@ server{
location / { location / {
proxy_pass http://{{ targetip }}:{{ targetport }}; proxy_pass http://{{ targetip }}:{{ targetport }};
proxy_set_header Host $http_host;
} }
} }