我的设置如下:我有向公众开放的服务器 1 和仅对服务器 1 开放的服务器 2。
请求应该到达服务器 1,然后通过代理到达服务器 2,后者进一步将其代理到本地运行的后端应用程序。实际发生的是,请求到达其他/默认服务器块,而不是 subdomain1.domain.com。
当我从服务器 1 curl subdomain1.domain.com 时,请求被正确路由。我遗漏了什么?
我也尝试过添加proxy_set_header Host $host;
,proxy_redirect off;
但是没有效果。
服务器1配置:
upstream my-api {
server subdomain1.domain.com:80;
}
server {
listen 443 ssl http2;
server_name subdomain2.subdomain1.domain.com;
ssl_certificate /path/file.cert;
ssl_certificate_key /path/file.key;
access_log /var/log/nginx/my-api.access.log;
error_log /var/log/nginx/my-api.error.log;
location / {
proxy_pass http://my-api;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
server {
listen 80;
server_name subdomain2.subdomain1.domain.com;
return 301 https://$host$request_uri;
}
服务器2配置:
server {
listen 80;
server_name subdomain1.domain.com;
access_log /var/log/nginx/api.en.access.log;
error_log /var/log/nginx/api.en.error.log;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://127.0.0.1:8001;
}
}
答案1
终于明白了。
我已将此行添加到服务器 1 配置中:proxy_set_header Host subdomain1.domain.com;
只有这样它才会进入正确的服务器块。我希望它也能帮助其他人。