When using ngx.req.set_header, "HTTP_" is added to the prefix of its own header. Please tell me how to prevent this.
------
ngx.req.set_header( EXAMPLE_KEY, EXAMPLE_VALUE);
As a result, the header name acquired is HTTP_EXAMPLE_KEY.
I want this to be EXAMPLE_KEY.