summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-10-06 16:19:49 +0000
committerJonathan Kolb <jon@b0g.us>2009-10-06 16:19:49 +0000
commite0a10d428151b26eceb33a1ede5b6334a8fd3f05 (patch)
treec82a4b20ab4f4e2aefe9a85f0361f146d129d349
parent0183c2f5a17b913b1bcc434872a3d2965b178040 (diff)
downloadnginx-e0a10d428151b26eceb33a1ede5b6334a8fd3f05.tar.gz
Changes with nginx 0.8.19 06 Oct 2009v0.8.19
*) Change: now SSLv2 protocol is disabled by default. *) Change: now default SSL ciphers are "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM". *) Bugfix: a "limit_req" directive did not work; the bug had appeared in 0.8.18.
-rw-r--r--CHANGES12
-rw-r--r--CHANGES.ru11
-rw-r--r--src/core/nginx.h4
-rw-r--r--src/http/modules/ngx_http_limit_req_module.c8
-rw-r--r--src/http/modules/ngx_http_ssl_module.c5
-rw-r--r--src/http/modules/perl/nginx.pm2
-rw-r--r--src/mail/ngx_mail_ssl_module.c5
7 files changed, 33 insertions, 14 deletions
diff --git a/CHANGES b/CHANGES
index c4d4438bd..bf858efb9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,19 @@
+Changes with nginx 0.8.19 06 Oct 2009
+
+ *) Change: now SSLv2 protocol is disabled by default.
+
+ *) Change: now default SSL ciphers are "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM".
+
+ *) Bugfix: a "limit_req" directive did not work; the bug had appeared
+ in 0.8.18.
+
+
Changes with nginx 0.8.18 06 Oct 2009
*) Feature: the "read_ahead" directive.
- *) Feature: now several "perl_modules" directive may be used.
+ *) Feature: now several "perl_modules" directives may be used.
*) Feature: the "limit_req_log_level" and "limit_conn_log_level"
directives.
diff --git a/CHANGES.ru b/CHANGES.ru
index 603b82f68..869a60426 100644
--- a/CHANGES.ru
+++ b/CHANGES.ru
@@ -1,4 +1,15 @@
+Изменения в nginx 0.8.19 06.10.2009
+
+ *) Изменение: теперь протокол SSLv2 по умолчанию запрещён.
+
+ *) Изменение: теперь по умолчанию используются следующие шифры SSL:
+ "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM".
+
+ *) Исправление: директива limit_req не работала; ошибка появилась в
+ 0.8.18.
+
+
Изменения в nginx 0.8.18 06.10.2009
*) Добавление: директива read_ahead.
diff --git a/src/core/nginx.h b/src/core/nginx.h
index b946c5b89..c6f3711a0 100644
--- a/src/core/nginx.h
+++ b/src/core/nginx.h
@@ -8,8 +8,8 @@
#define _NGINX_H_INCLUDED_
-#define nginx_version 8018
-#define NGINX_VERSION "0.8.18"
+#define nginx_version 8019
+#define NGINX_VERSION "0.8.19"
#define NGINX_VER "nginx/" NGINX_VERSION
#define NGINX_VAR "NGINX"
diff --git a/src/http/modules/ngx_http_limit_req_module.c b/src/http/modules/ngx_http_limit_req_module.c
index c9ff20c87..f9b64f1f8 100644
--- a/src/http/modules/ngx_http_limit_req_module.c
+++ b/src/http/modules/ngx_http_limit_req_module.c
@@ -398,15 +398,15 @@ ngx_http_limit_req_lookup(ngx_http_limit_req_conf_t *lrcf, ngx_uint_t hash,
excess = lr->excess - ctx->rate * ngx_abs(ms) / 1000 + 1000;
+ if (excess < 0) {
+ excess = 0;
+ }
+
if ((ngx_uint_t) excess > lrcf->burst) {
*lrp = lr;
return NGX_BUSY;
}
- if (excess < 0) {
- excess = 0;
- }
-
lr->excess = excess;
lr->last = now;
diff --git a/src/http/modules/ngx_http_ssl_module.c b/src/http/modules/ngx_http_ssl_module.c
index cc0b932d2..1d67eeb26 100644
--- a/src/http/modules/ngx_http_ssl_module.c
+++ b/src/http/modules/ngx_http_ssl_module.c
@@ -13,7 +13,7 @@ typedef ngx_int_t (*ngx_ssl_variable_handler_pt)(ngx_connection_t *c,
ngx_pool_t *pool, ngx_str_t *s);
-#define NGX_DEFAULT_CIPHERS "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP"
+#define NGX_DEFAULT_CIPHERS "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM"
static ngx_int_t ngx_http_ssl_static_variable(ngx_http_request_t *r,
@@ -347,8 +347,7 @@ ngx_http_ssl_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
prev->prefer_server_ciphers, 0);
ngx_conf_merge_bitmask_value(conf->protocols, prev->protocols,
- (NGX_CONF_BITMASK_SET
- |NGX_SSL_SSLv2|NGX_SSL_SSLv3|NGX_SSL_TLSv1));
+ (NGX_CONF_BITMASK_SET|NGX_SSL_SSLv3|NGX_SSL_TLSv1));
ngx_conf_merge_uint_value(conf->verify, prev->verify, 0);
ngx_conf_merge_uint_value(conf->verify_depth, prev->verify_depth, 1);
diff --git a/src/http/modules/perl/nginx.pm b/src/http/modules/perl/nginx.pm
index 3e667f4ad..6e96912e7 100644
--- a/src/http/modules/perl/nginx.pm
+++ b/src/http/modules/perl/nginx.pm
@@ -47,7 +47,7 @@ our @EXPORT = qw(
HTTP_INSUFFICIENT_STORAGE
);
-our $VERSION = '0.8.18';
+our $VERSION = '0.8.19';
require XSLoader;
XSLoader::load('nginx', $VERSION);
diff --git a/src/mail/ngx_mail_ssl_module.c b/src/mail/ngx_mail_ssl_module.c
index 025df54d7..c9a9f35d8 100644
--- a/src/mail/ngx_mail_ssl_module.c
+++ b/src/mail/ngx_mail_ssl_module.c
@@ -9,7 +9,7 @@
#include <ngx_mail.h>
-#define NGX_DEFAULT_CIPHERS "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP"
+#define NGX_DEFAULT_CIPHERS "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM"
static void *ngx_mail_ssl_create_conf(ngx_conf_t *cf);
@@ -198,8 +198,7 @@ ngx_mail_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child)
prev->prefer_server_ciphers, 0);
ngx_conf_merge_bitmask_value(conf->protocols, prev->protocols,
- (NGX_CONF_BITMASK_SET
- |NGX_SSL_SSLv2|NGX_SSL_SSLv3|NGX_SSL_TLSv1));
+ (NGX_CONF_BITMASK_SET|NGX_SSL_SSLv3|NGX_SSL_TLSv1));
ngx_conf_merge_str_value(conf->certificate, prev->certificate, "");
ngx_conf_merge_str_value(conf->certificate_key, prev->certificate_key, "");