我正在使用 nginx 作为反向代理,并尝试从上游服务器(Apache)的响应中读取自定义标头,但没有成功。Apache 响应如下:
HTTP/1.0 200 OK
Date: Fri, 14 Sep 2012 20:18:29 GMT
Server: Apache/2.2.17 (Ubuntu)
X-Powered-By: PHP/5.3.5-1ubuntu7.10
Connection: close
Content-Type: application/json; charset=UTF-8
My-custom-header: 1
我想从My-custom-header中读取值并在 if 子句中使用它:
location / {
// ...
// get My-custom-header value here
// ...
}
这可能吗?提前致谢。