I have an app-facing Nginx Plus (R22) gateway, which is validating JWT token in Authorization header. Lately I found one of our legacy mobile apps had a bug in which the authorization header has a typo: it was missing a space between the bearer keyword and the token. (example: bearereyJ...)
I used a simple map to make sure I add a space, and set it inside $authorization variable, which works fine:
map "$http_authorization" $authorization {
~*^bearer(?<token>(.*))$ "bearer $token";
default $http_authorization;
}
I also set the Authorization header in my location, but my request is still getting rejected and I keep getting 401, even though upon reviewing, the token is valid.
location ~ ...{
proxy_set_header Authorization $authorization;
proxy_pass ...;
}
How can I make sure I rewrite the header before the JWT validation happens?
Having asked that, my current approach as a workaround would be to set up two locations, one would rewrite the header and will not validate the token, then proxy to another location which will check the modified header and proxy to its destination. Is it a good approach?
Thanks in advance!
Here's the workaround I had to do in order to make this work: