简体   繁体   中英

Pass request header and request body in kubernetes nginx ingress controller

I am passing the authorization header in ingress yaml file

  nginx.ingress.kubernetes.io/configuration-snippet: |
      proxy_set_header Authorization "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1Ni......"

but getting the error

2021/03/01 09:23:58 [emerg] 947#947: too long parameter, probably missing terminating """ character in /tmp/nginx-cfg445808174:586

I want to pass the request payload as well to the auth-url what is the right way to pass the authorization header and request body?

you can pass the authorization header

annotations:
  nginx.ingress.kubernetes.io/configuration-snippet: |
    proxy_set_header Authorization $http_authorization;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM