diff xml/ru/docs/http/ngx_http_ssl_module.xml @ 538:58dd64aef626

Documented ciphers used by default in modern nginx versions (closes #177).
author Ruslan Ermilov <ru@nginx.com>
date Mon, 18 Jun 2012 14:39:03 +0000
parents b83d332fbdaa
children be54c443235a
line wrap: on
line diff
--- a/xml/ru/docs/http/ngx_http_ssl_module.xml	Mon Jun 18 13:37:34 2012 +0000
+++ b/xml/ru/docs/http/ngx_http_ssl_module.xml	Mon Jun 18 14:39:03 2012 +0000
@@ -153,7 +153,7 @@
 
 <directive name="ssl_ciphers">
 <syntax><value>шифры</value></syntax>
-<default>HIGH:!ADH:!MD5</default>
+<default>HIGH:!aNULL:!MD5</default>
 <context>http</context>
 <context>server</context>
 
@@ -162,7 +162,7 @@
 Шифры задаются в формате, поддерживаемом библиотекой
 OpenSSL, например:
 <example>
-ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
+ssl_ciphers ALL:!aNULL:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
 </example>
 </para>
 
@@ -171,6 +171,14 @@
 “<command>openssl ciphers</command>”.
 </para>
 
+<para>
+<note>
+В предыдущих версиях nginx по умолчанию использовались
+<link doc="configuring_https_servers.xml" id="compatibility">другие</link>
+шифры.
+</note>
+</para>
+
 </directive>