1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
2021-08-23 sto@mixinet.net
* Version 1.5.3.
* Always load after ngx_http_access_module (patch provided by khimaros, see
https://github.com/sto/ngx_http_auth_pam_module/pull/26)
2020-06-23 sto@mixinet.net
* Version 1.5.2.
* Log authentication errors as errors instead of debug (patch provided by
Juha Koho, see https://github.com/sto/ngx_http_auth_pam_module/pull/11)
* Send client IP address to PAM (patch provided by Marcin Łojewski, see
https://github.com/sto/ngx_http_auth_pam_module/pull/14)
2016-04-06 sto@iti.es
* Version 1.5.1.
* Fix building alongside other modules in nginx 1.9.11+ (patch provided by
Graham Edgecombe <grahamedgecombe@gmail.com>)
2016-03-23 sto@iti.es
* Version 1.5.
* Added support to build module dynamically (patch provided by Sjir
Bagmeijer <sbagmeijer@ulyaoth.co.kr>).
* Log PAM error and info messages to nginx log files (patch provided by
André Caron <andre.l.caron@gmail.com>).
2015-02-04 sto@iti.es
* Version 1.4.
* Cleanup PAM responses on error, the module was not doing it, causing
memory leaks (thanks to Michael Koziarski for the report).
2013-09-17 sto@iti.es
* Version 1.3.
* Added support to export HOST and REQUEST variables to the PAM ENVIRONMENT.
Thanks to Ruben Jenster for the initial patch, his version is available
from https://github.com/r10r/ngx_http_auth_pam_module; my version uses his
implementation but only if the user sets the ``pam_auth_set_pam_env``
flag.
* Fixed bug from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=+721702
(ngx_module_t commands array should end with a ngx_null_command); the bug
was already fixed on the PAM_ENV patch, but I forgot about it until I went
back to my svn repository to add the debian patch... better latter than
never... ;)
2010-11-15 sto@iti.upv.es
* Version 1.2.
* Fixed possible memory leak when authentication fails, pam_end has to
be called to free memory (thanks to Neil Chintomby).
2009-01-26 sto@iti.upv.es
* Version 1.1.
* Fixed ngx_log_debugX calls, no we use the correct X value on each
call.
2008-09-17 sto@iti.upv.es
* Initial version (1.0).
|