[PATCH] Grammar fixes

2019-12-24 Thread Ville Skyttä
# HG changeset patch # User Ville Skyttä # Date 1577258677 -7200 # Wed Dec 25 09:24:37 2019 +0200 # Node ID f4b83914e4009fb9c528f0318287a76aa0c7326f # Parent e99e9b0a8c51d59c7ee665489949d8556565adff Grammar fixes. diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml --- a/do

Re: nginx - get value of the header - x_forwarded_for in Nginx module (Naxsi)

2019-12-24 Thread Marcin Kozlowski
Thanks. Works. For the reference, this is the code I used: ngx_uint_t n; ngx_table_elt_t **h; ngx_array_t a; a = req->headers_in.x_forwarded_for; n = a.nelts; h = a.elts; for (i = 0; iconnection->log, 0, "x_forwarded_for: %s", h[i]->value.data); } BTW What would b

Re: Fwd: 1.17.5 regression

2019-12-24 Thread Maxim Dounin
Hello! On Tue, Dec 24, 2019 at 08:59:46AM -0800, Maksim Yevmenkin wrote: > > Just to make sure it's known: the patch above was committed after > > internal review/testing, and it is available as part of the 1.17.7 > > release. > > would it be possible to publish 1.17.7 to https://github.com/ngi

Re: Fwd: 1.17.5 regression

2019-12-24 Thread Maksim Yevmenkin
hello! > Just to make sure it's known: the patch above was committed after > internal review/testing, and it is available as part of the 1.17.7 > release. would it be possible to publish 1.17.7 to https://github.com/nginx/nginx.git ? thanks! max ___ n

Re: Fwd: 1.17.5 regression

2019-12-24 Thread Gábor Boskovits
Maxim Dounin ezt írta (időpont: 2019. dec. 24., K, 17:46): > > Hello! > > On Tue, Dec 24, 2019 at 04:45:20PM +0100, Gábor Boskovits wrote: > > > Maxim Dounin ezt írta (időpont: 2019. dec. 23., H, > > 20:28): > > > > > > Hello! > > > > > > On Wed, Dec 18, 2019 at 08:24:25PM +0300, Maxim Dounin wr

Re: Fwd: 1.17.5 regression

2019-12-24 Thread Maxim Dounin
Hello! On Tue, Dec 24, 2019 at 04:45:20PM +0100, Gábor Boskovits wrote: > Maxim Dounin ezt írta (időpont: 2019. dec. 23., H, > 20:28): > > > > Hello! > > > > On Wed, Dec 18, 2019 at 08:24:25PM +0300, Maxim Dounin wrote: > > > > > On Mon, Dec 16, 2019 at 03:02:37PM +0100, Gábor Boskovits wrote:

Re: Fwd: 1.17.5 regression

2019-12-24 Thread Gábor Boskovits
Hello Maxim, Maxim Dounin ezt írta (időpont: 2019. dec. 23., H, 20:28): > > Hello! > > On Wed, Dec 18, 2019 at 08:24:25PM +0300, Maxim Dounin wrote: > > > On Mon, Dec 16, 2019 at 03:02:37PM +0100, Gábor Boskovits wrote: > > > > > On berlin.guix.gnu.org we observed a regression upon upgrading ngin

[nginx] nginx-1.17.7-RELEASE

2019-12-24 Thread Maxim Dounin
details: https://hg.nginx.org/nginx/rev/e56295fe0ea7 branches: changeset: 7613:e56295fe0ea7 user: Maxim Dounin date: Tue Dec 24 18:00:09 2019 +0300 description: nginx-1.17.7-RELEASE diffstat: docs/xml/nginx/changes.xml | 84 ++ 1 files

[nginx] release-1.17.7 tag

2019-12-24 Thread Maxim Dounin
details: https://hg.nginx.org/nginx/rev/e99e9b0a8c51 branches: changeset: 7614:e99e9b0a8c51 user: Maxim Dounin date: Tue Dec 24 18:00:09 2019 +0300 description: release-1.17.7 tag diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff --

[nginx] SSL: reworked posted next events.

2019-12-24 Thread Maxim Dounin
details: https://hg.nginx.org/nginx/rev/1ce3f01a4355 branches: changeset: 7612:1ce3f01a4355 user: Maxim Dounin date: Tue Dec 24 17:24:59 2019 +0300 description: SSL: reworked posted next events. Introduced in 9d2ad2fb4423 available bytes handling in SSL relied on connection read han

Re: nginx - get value of the header - x_forwarded_for in Nginx module (Naxsi)

2019-12-24 Thread Ruslan Ermilov
On Mon, Dec 23, 2019 at 11:04:43PM +0100, Marcin Kozlowski wrote: > Hi List, > > How to get x_forwarded_for sent in the request in NGINX module (NAXSI in > particular): > > My attempt: > > ngx_log_error(NGX_LOG_ERR, req->connection->log, > 0, "test %s", (char *)req->headers_in.x_fo