ngx_http_upstream_keepalive
changeset 22:f3e74fbd0f0b 0.3
Keepalive: add CHANGES, minor documentation fixes.
| author | Maxim Dounin <mdounin@mdounin.ru> |
|---|---|
| date | Tue Sep 14 20:09:10 2010 +0400 |
| parents | 9a4ee6fe1c6d |
| children | cad8bc39d98d |
| files | CHANGES LICENSE README |
| diffstat | 3 files changed, 21 insertions(+), 3 deletions(-) [+] |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/CHANGES Tue Sep 14 20:09:10 2010 +0400 1.3 @@ -0,0 +1,19 @@ 1.4 + 1.5 +Changes with upstream keepalive module 0.3 (2010-09-14): 1.6 + 1.7 + *) Bugfix: cached connections might be closed needlessly. 1.8 + Thanks to Martin Fjordvald. 1.9 + 1.10 + *) Bugfix: in memory allocation error handling on config creation. 1.11 + 1.12 + 1.13 +Changes with upstream keepalive module 0.2 (2009-05-15): 1.14 + 1.15 + *) Feature: expiremental support for FastCGI (requires patches). 1.16 + 1.17 + *) Bugfix: invalid connections might be cached. 1.18 + 1.19 + 1.20 +Changes with upstream keepalive module 0.1 (2008-10-24): 1.21 + 1.22 + *) The first public version.
2.1 --- a/LICENSE Tue Sep 14 04:01:14 2010 +0400 2.2 +++ b/LICENSE Tue Sep 14 20:09:10 2010 +0400 2.3 @@ -1,5 +1,5 @@ 2.4 /* 2.5 - * Copyright (C) 2008 Maxim Dounin 2.6 + * Copyright (C) 2008-2010 Maxim Dounin 2.7 * 2.8 * Redistribution and use in source and binary forms, with or without 2.9 * modification, are permitted provided that the following conditions 2.10 @@ -21,5 +21,4 @@ 2.11 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2.12 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2.13 * SUCH DAMAGE. 2.14 - * 2.15 */
3.1 --- a/README Tue Sep 14 04:01:14 2010 +0400 3.2 +++ b/README Tue Sep 14 20:09:10 2010 +0400 3.3 @@ -5,7 +5,7 @@ 3.4 3.5 Note: don't even try it with http backends. It won't work. 3.6 3.7 -Note: it's for nginx 0.7.* and won't work with nginx 0.6.*. 3.8 +Note: it's for nginx 0.7.* and up, won't work with nginx 0.6.*. 3.9 3.10 Configuration directives: 3.11
