From e455bcedf73ad8aff8b0acd1101b3f8cbde9ff37 Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Mon, 16 Aug 2021 16:36:06 +0300 Subject: Welcome and 50x error pages style. Indentation of the CSS code removed to match style of the HTML code. --- docs/html/50x.html | 7 ++----- docs/html/index.html | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) (limited to 'docs') diff --git a/docs/html/50x.html b/docs/html/50x.html index 9071e0a24..7dd7c909c 100644 --- a/docs/html/50x.html +++ b/docs/html/50x.html @@ -3,11 +3,8 @@ Error diff --git a/docs/html/index.html b/docs/html/index.html index 2ca3b9543..09638f717 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -3,11 +3,8 @@ Welcome to nginx! -- cgit From b381cbc085502b76a1db3f4439ccec5bb01b5a54 Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Mon, 16 Aug 2021 16:36:08 +0300 Subject: Dark mode support in welcome and 50x error pages. Prodded by Duncan Lock. --- docs/html/50x.html | 1 + docs/html/index.html | 1 + 2 files changed, 2 insertions(+) (limited to 'docs') diff --git a/docs/html/50x.html b/docs/html/50x.html index 7dd7c909c..a57c2f93d 100644 --- a/docs/html/50x.html +++ b/docs/html/50x.html @@ -3,6 +3,7 @@ Error diff --git a/docs/html/index.html b/docs/html/index.html index 09638f717..e8f562255 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -3,6 +3,7 @@ Welcome to nginx! -- cgit From d16245213a7072ff14f050bff227b75d59c49bec Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Tue, 31 Aug 2021 18:13:46 +0300 Subject: nginx-1.21.2-RELEASE --- docs/xml/nginx/changes.xml | 107 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) (limited to 'docs') diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml index 1fb7634cb..fb64a4732 100644 --- a/docs/xml/nginx/changes.xml +++ b/docs/xml/nginx/changes.xml @@ -5,6 +5,113 @@ + + + + +теперь nginx возвращает ошибку, +если в запросе по протоколу HTTP/1.0 присутствует +строка заголовка "Transfer-Encoding". + + +now nginx rejects HTTP/1.0 requests +with the "Transfer-Encoding" header line. + + + + + +экспортные шифры больше не поддерживаются. + + +export ciphers are no longer supported. + + + + + +совместимость с OpenSSL 3.0. + + +OpenSSL 3.0 compatibility. + + + + + +теперь серверу аутентификации почтового прокси-сервера +передаются строки заголовка "Auth-SSL-Protocol" и "Auth-SSL-Cipher".
+Спасибо Rob Mueller. +
+ +the "Auth-SSL-Protocol" and "Auth-SSL-Cipher" header lines +are now passed to the mail proxy authentication server.
+Thanks to Rob Mueller. +
+
+ + + +API для обработки тела запроса +теперь позволяет буферизировать обрабатываемые данные. + + +request body filters API +now permits buffering of the data being processed. + + + + + +SSL-соединения к бэкендам в модуле stream +могли зависать после SSL handshake. + + +backend SSL connections in the stream module +might hang after an SSL handshake. + + + + + +уровень безопасности, доступный в OpenSSL 1.1.0 и новее, +не учитывался при загрузке сертификатов сервера, +если был задан через "@SECLEVEL=N" в директиве ssl_ciphers. + + +the security level, which is available in OpenSSL 1.1.0 or newer, +did not affect loading of the server certificates +when set with "@SECLEVEL=N" in the "ssl_ciphers" directive. + + + + + +SSL-соединения с gRPC-бэкендами могли зависать, +если использовались методы select, poll или /dev/poll. + + +SSL connections with gRPC backends might hang +if select, poll, or /dev/poll methods were used. + + + + + +при использовании HTTP/2 +тело запроса всегда записывалось на диск, +если в запросе не было строки заголовка "Content-Length". + + +when using HTTP/2 +client request body was always written to disk +if the "Content-Length" header line was not present in the request. + + + +
+ + -- cgit