4

I have question regarding AWS ALB. Does anybody knows if it is possible to modify (specifically ADD) custom headers to requests? Something like proxy_set_header in nginx http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_set_header

Dave M
  • 4,494
  • 21
  • 30
  • 30

1 Answers1

2

ALB and ELB set some standard headers: X-Forwarded-For:, X-Forwarded-Proto: and X-Forwarded-Port: (see here).

I don't think you can set your own headers. What do you need it for?

MLu
  • 23,798
  • 5
  • 54
  • 81