应提供反向代理头

时间:2015-08-21 11:34:37

标签: node.js proxy reverse-proxy http-proxy node-http-proxy

我在节点应用

中使用以下模块中的revese代理

https://github.com/nodejitsu/node-http-proxy

我的问题是我是否需要修改反向代理状态的标头以使其像标准一样工作?

http://httpd.apache.org/docs/2.2/mod/mod_proxy.html

1 个答案:

答案 0 :(得分:1)

根据我的基本理解,您需要使用其他标头才能将信息传递给原始服务器。

尝试:

X-Forwarded-For  //The IP address of the client.
X-Forwarded-Host //The original host requested by the client in the Host HTTP request header.
X-Forwarded-Server //The hostname of the proxy server.

此信息基于This