如何在nginx中使用proxy_pass x-access-token(JWT)头文件?

时间:2017-11-28 19:45:33

标签: http nginx jwt nginx-reverse-proxy

我正在尝试使用nginx作为反向代理,但我找不到任何关于如何转发x-access-token(JWT)标头的内容。

反向代理工作正常,使用http://localhost/app给我api。但是,当我尝试访问任何需要令牌的东西时,例如。 http://localhost/app/api/products我得到Cannot GET //api/products

在文档中,它表示默认值为proxy_pass_request_headers on;,但问题似乎并不存在。

nginx.conf

events {}

http {
    server {
        listen 8000;

        location /app {
            proxy_pass 'http://localhost:3000/';
        }
    }
}

0 个答案:

没有答案