ngx-http-auth-jwt-module icon indicating copy to clipboard operation
ngx-http-auth-jwt-module copied to clipboard

Secure your NGINX locations with JWT

Results 36 ngx-http-auth-jwt-module issues
Sort by recently updated
recently updated
newest added

New Pull request for issue: https://github.com/TeslaGov/ngx-http-auth-jwt-module/issues/75

Would be awesome if any time that there are changes at the code, a new release build gets triggered.

Makefiles can be cumbersome. This is just for consideration.

enhancement

The README needs some structure, cleanup, and better documentation regarding the available options. Also should expand on how to actually obtain the built module, etc.

docs

The `auth_jwt_redirect` directive makes the code overly complicated and can be easily replaced by the nginx's `error_page` directive: from: ``` location ~ ^/secure/ { auth_jwt_enabled on; auth_jwt_validation_type COOKIE=rampartjwt; auth_jwt_redirect on;...

The original code pushes the extracted claims into the HTTP 'out' headers, however, the original use case is to pass these claims as a header by reverse proxying. These headers...

``` jansson/lib/libjansson.a(value.o): In function `json_real': value.c:(.text+0x3134): undefined reference to `__isnan' value.c:(.text+0x314c): undefined reference to `__isinf' jansson/lib/libjansson.a(value.o): In function `json_real_set': value.c:(.text+0x3294): undefined reference to `__isnan' value.c:(.text+0x32ac): undefined reference to `__isinf' collect2:...

I would like to support shorter life for tokens. Typically, this is done with 2 tokens. A refresh-token that is used to obtain a short lived bearer token. However, I'd...

Hello, I followed the post post https://mostafa-asg.github.io/post/nginx-authentication-with-jwt/ I think it went successful, but... I got stuck on the last stage. I think I make just some noobie mistake, but I...

It would be great to support additional algorithms as changing them out in production can be difficult if you have a lot of consumers of the public keys. Specifically supporting...