我将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
// ...
}
这可能吗?提前致谢。
$http_
。以OP为例,$http_my_custom_header
(区分大小写!)