nginx自定义header支持
Posted 莫大人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx自定义header支持相关的知识,希望对你有一定的参考价值。
今天配置nginx的时候遇到一个问题,直接访问接口没有问题,但是通过nginx转发之后,总是报token失效,无法获取token值,发现请求头丢失了。
默认是不支持非nginx标准的用户自定义header的,如果需要
在http段或者server段加underscores_in_headers on;
http { underscores_in_headers on; server { location / { proxy_pass http://bank/; proxy_set_header app_key ${http_app_key}; } } }
以上是关于nginx自定义header支持的主要内容,如果未能解决你的问题,请参考以下文章