summaryrefslogtreecommitdiff
path: root/src/mail
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-10-14 12:57:31 +0000
committerJonathan Kolb <jon@b0g.us>2009-10-14 12:57:31 +0000
commitc4841987988be7c9525e4d2992c894d8ad7e3d92 (patch)
tree0e545a3ef0b5ea9cf8ec35c55faba285cf79c470 /src/mail
parente0a10d428151b26eceb33a1ede5b6334a8fd3f05 (diff)
downloadnginx-c4841987988be7c9525e4d2992c894d8ad7e3d92.tar.gz
Changes with nginx 0.8.20 14 Oct 2009v0.8.20
*) Change: now default SSL ciphers are "HIGH:!ADH:!MD5". *) Bugfix: the ngx_http_autoindex_module did not show the trailing slash in links to a directory; the bug had appeared in 0.7.15. *) Bugfix: nginx did not close a log file set by the --error-log-path configuration option; the bug had appeared in 0.7.53. *) Bugfix: nginx did not treat a comma as separator in the "Cache-Control" backend response header line. *) Bugfix: nginx/Windows might not create temporary file, a cache file, or "proxy/fastcgi_store"d file if a worker has no enough access rights for top level directories. *) Bugfix: the "Set-Cookie" and "P3P" FastCGI response header lines were not hidden while caching if no "fastcgi_hide_header" directives were used with any parameters. *) Bugfix: nginx counted incorrectly disk cache size.
Diffstat (limited to 'src/mail')
-rw-r--r--src/mail/ngx_mail_ssl_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mail/ngx_mail_ssl_module.c b/src/mail/ngx_mail_ssl_module.c
index c9a9f35d8..90f2b1b2b 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"
+#define NGX_DEFAULT_CIPHERS "HIGH:!ADH:!MD5"
static void *ngx_mail_ssl_create_conf(ngx_conf_t *cf);