Merge pull request #223 from fleetbase/feature/nginx_host_header

Make nginx pass the Host header
This commit is contained in:
Ron
2024-03-06 13:14:35 +08:00
committed by GitHub

View File

@@ -37,6 +37,7 @@ server {
open_file_cache_errors off;
location / {
proxy_set_header Host $host;
proxy_pass http://${NGINX_APPLICATION_HOSTNAME}:8000;
}
}