From 7e1637a31631955aec753365c7149c64b216d47e Mon Sep 17 00:00:00 2001 From: Igor Ippolitov Date: Thu, 19 Nov 2020 16:59:00 +0000 Subject: Core: "-e" command line option. When installing or running from a non-root user it is sometimes required to override default, compiled in error log path. There was no way to do this without rebuilding the binary (ticket #147). This patch introduced "-e" command line option which allows one to override compiled in error log path. --- docs/man/nginx.8 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/man/nginx.8 b/docs/man/nginx.8 index 573d935e6..f2ed9f7b2 100644 --- a/docs/man/nginx.8 +++ b/docs/man/nginx.8 @@ -25,7 +25,7 @@ .\" SUCH DAMAGE. .\" .\" -.Dd December 5, 2019 +.Dd November 5, 2020 .Dt NGINX 8 .Os .Sh NAME @@ -35,6 +35,7 @@ .Nm .Op Fl ?hqTtVv .Op Fl c Ar file +.Op Fl e Ar file .Op Fl g Ar directives .Op Fl p Ar prefix .Op Fl s Ar signal @@ -54,6 +55,12 @@ Print help. .It Fl c Ar file Use an alternative configuration .Ar file . +.It Fl e Ar file +Use an alternative error log +.Ar file . +Special value +.Cm stderr +indicates that the standard error output should be used. .It Fl g Ar directives Set global configuration directives. See -- cgit From 01ed3c3591fe5becf291a04585dfdd0551f9455f Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Thu, 19 Nov 2020 17:15:22 +0000 Subject: Use .Mt to mark up email addresses. --- docs/man/nginx.8 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/man/nginx.8 b/docs/man/nginx.8 index f2ed9f7b2..10db3e6cb 100644 --- a/docs/man/nginx.8 +++ b/docs/man/nginx.8 @@ -205,10 +205,10 @@ Development of started in 2002, with the first public release on October 4, 2004. .Sh AUTHORS .An -nosplit -.An Igor Sysoev Aq igor@sysoev.ru . +.An Igor Sysoev Aq Mt igor@sysoev.ru . .Pp This manual page was originally written by -.An Sergey A. Osokin Aq osa@FreeBSD.org.ru +.An Sergey A. Osokin Aq Mt osa@FreeBSD.org.ru as a result of compiling many .Nm documents from all over the world. -- cgit From caa1e4ffa62bf4f995aecf054c6aace0cdb58786 Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Tue, 24 Nov 2020 18:06:34 +0300 Subject: nginx-1.19.5-RELEASE --- docs/xml/nginx/changes.xml | 56 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) (limited to 'docs') diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml index a7417f59c..d1bd0219f 100644 --- a/docs/xml/nginx/changes.xml +++ b/docs/xml/nginx/changes.xml @@ -5,6 +5,62 @@ + + + + +ключ -e. + + +the -e switch. + + + + + +при сборке дополнительных модулей +теперь можно указывать одни и те же исходные файлы в разных модулях. + + +the same source files can now be specified in different modules +while building addon modules. + + + + + +SSL shutdown не работал +при закрытии соединений с ожиданием дополнительных данных (lingering close). + + +SSL shutdown did not work +when lingering close was used. + + + + + +при работе с gRPC-бэкендами +могли возникать ошибки "upstream sent frame for closed stream". + + +"upstream sent frame for closed stream" errors might occur +when working with gRPC backends. + + + + + +во внутреннем API для обработки тела запроса. + + +in request body filters internal API. + + + + + + -- cgit