nginx-auth-request-module icon indicating copy to clipboard operation
nginx-auth-request-module copied to clipboard

A Nginx module that enables authorizations on sub-requests

Results 9 nginx-auth-request-module issues
Sort by recently updated
recently updated
newest added

I was experimenting with auth_request today and realized there is a fairly scary pitfall awaiting server admins who may inadvertently trigger responses in the 200-300 range at their authentication endpoints....

Currently it seems that auth_request does not allow to have a custom body returned to the client. There is a quick solution for that by allowing an additional HTTP Status...

Hello, I do not seem to be able to use session and cookie in auth_request back end (PHP). How do I configure so that session and cookies are available? NGINX...

auth_request and error_page on server lever does not work. The error page does not show up. ``` #works not # auth_request /foo-auth; # error_page 401 @foo-authentication; # neither other way...

When I make a POST with a body larger than 1MB to a url protected by this module I get a 413. Config: ``` location = /api/v2/auth { internal; proxy_pass_request_body...

Hi, I'm using nginx to provide reverse proxy support for the web apps I run at home. I'm a total noobie to this. I had to reinstall the my Mac...

@perusio Do you think it would be possible for you to tag a release of the module on github. I use your repo for some automated provision and it would...

I want to authenticate a url using auth_request nginx module, its happening perfectly. After that i want nginx to send the response instead of executing the exact page. location /checkAuthentication.php...