ngx_http_auth_pam_module
ngx_http_auth_pam_module copied to clipboard
Nginx module to use PAM for simple http authentication
It would be cool to be able to use fail2ban with map_auth. Unfortunately auth failures do not seem to be logged in any useful way. Therefore I propose to actually...
With "realm" supporting variable expansion, it becomes possible to conditionally disable PAM based authentication when some other conditions are valid. Typically, this allows to support both certificate based authentication for...
To optimise performance, I would like to skip pam auth for HEAD requests. For example... `if ( $request_method !~ ^HEAD$ ) {` This is not supported, but would greatly assist...