下面是我的Nginx配置-
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://destination_server;
}
destination_server
是否有办法知道请求来自Nginx服务器?
可能的解决方案可能是proxy_set_header Nginx-Name $custom_name
。然后在destination_server
上,我可以检查请求标头以查看请求是否来自某个Nginx。
是否有更好的方法呢?谢谢。