Make nginx pass the Host header

This commit is contained in:
Eugene Dementyev
2024-02-27 19:52:56 +13:00
parent d4626be332
commit fa536c6183

View File

@@ -13,6 +13,7 @@ server {
index index.php;
location / {
proxy_set_header Host $host;
proxy_pass http://${NGINX_APPLICATION_HOSTNAME}:8000;
}
}