Reverse proxy forcing language in cookies

2022-07-19 Thread Saint Michael
I was asked to proxy google.com through https://ГУГЛЭ.pl but I need to make Google believe that clients are behind a computer with the Russian language, not English. Now I have this: proxy_cookie_domain https://google.com https://xn--c1aay4a4c.pl; (xn--c1aay4a4c is latin representation of ГУГЛЭ)

Re: Question about rotating log files with USR1 signal

2022-07-19 Thread Fabiano Furtado Pessoa Coelho
Thanks! This ticket https://trac.nginx.org/nginx/ticket/376 is exactly my doubt. You helped me a lot. On Tue, Jul 19, 2022 at 12:17 AM Maxim Dounin wrote: > > Hello! > > On Mon, Jul 18, 2022 at 01:37:47PM -0300, Fabiano Furtado Pessoa Coelho wrote: > > > As described in the official

njs-0.7.6

2022-07-19 Thread Dmitry Volyntsev
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). Notable new features: - improved r.args: Now, duplicate keys are returned as an array, keys are case-sensitive, both keys and values are percent-decoded. For example, the query string

[nginx-announce] njs-0.7.6

2022-07-19 Thread Dmitry Volyntsev
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). Notable new features: - improved r.args: Now, duplicate keys are returned as an array, keys are case-sensitive, both keys and values are percent-decoded. For example, the query string

Re: [PATCH] Linux packages: removed Ubuntu 21.10 'impish' due to EOL

2022-07-19 Thread Sergey Kandaurov
On Tue, Jul 19, 2022 at 07:28:25PM +0400, Konstantin Pavlov wrote: > # HG changeset patch > # User Konstantin Pavlov > # Date 1658244488 -14400 > # Tue Jul 19 19:28:08 2022 +0400 > # Node ID ca4adc1068f0ba18c477f9816ce2b798f675fbe0 > # Parent e06cf66a9f630d376699be0fd78b9fc64ef6256e > Linux

[PATCH] Linux packages: removed Ubuntu 21.10 'impish' due to EOL

2022-07-19 Thread Konstantin Pavlov
# HG changeset patch # User Konstantin Pavlov # Date 1658244488 -14400 # Tue Jul 19 19:28:08 2022 +0400 # Node ID ca4adc1068f0ba18c477f9816ce2b798f675fbe0 # Parent e06cf66a9f630d376699be0fd78b9fc64ef6256e Linux packages: removed Ubuntu 21.10 'impish' due to EOL. diff -r e06cf66a9f63 -r

[nginx-ru-announce] nginx-1.23.1

2022-07-19 Thread Maxim Dounin
Изменения в nginx 1.23.1 19.07.2022 *) Добавление: оптимизация использования памяти в конфигурациях с SSL-проксированием. *) Добавление: теперь с помощью параметра "ipv4=off" директивы "resolver" можно запретить поиск IPv4-адресов

nginx-1.23.1

2022-07-19 Thread Maxim Dounin
Изменения в nginx 1.23.1 19.07.2022 *) Добавление: оптимизация использования памяти в конфигурациях с SSL-проксированием. *) Добавление: теперь с помощью параметра "ipv4=off" директивы "resolver" можно запретить поиск IPv4-адресов

nginx-1.23.1

2022-07-19 Thread Maxim Dounin
Changes with nginx 1.23.119 Jul 2022 *) Feature: memory usage optimization in configurations with SSL proxying. *) Feature: looking up of IPv4 addresses while resolving now can be disabled with the "ipv4=off" parameter of the

[nginx-announce] nginx-1.23.1

2022-07-19 Thread Maxim Dounin
Changes with nginx 1.23.119 Jul 2022 *) Feature: memory usage optimization in configurations with SSL proxying. *) Feature: looking up of IPv4 addresses while resolving now can be disabled with the "ipv4=off" parameter of the

Re: 2 x Applications using the same domain behind a reverse proxy

2022-07-19 Thread Mik J via nginx
Hello Ian, Thank you for your answer. I did what you told me Now I have on my reverse proxy location / {     proxy_pass  http://10.10.10.10:80;     proxy_redirect  off;     proxy_set_header    Host    $http_host;     proxy_set_header

[nginx] Updated OpenSSL used for win32 builds.

2022-07-19 Thread Konstantin Pavlov
details: https://hg.nginx.org/nginx/rev/e8723b2cef75 branches: changeset: 8059:e8723b2cef75 user: Maxim Dounin date: Tue Jul 19 17:03:30 2022 +0300 description: Updated OpenSSL used for win32 builds. diffstat: misc/GNUmakefile | 2 +- 1 files changed, 1 insertions(+), 1

[nginx] nginx-1.23.1-RELEASE

2022-07-19 Thread Konstantin Pavlov
details: https://hg.nginx.org/nginx/rev/a63d0a70afea branches: changeset: 8060:a63d0a70afea user: Maxim Dounin date: Tue Jul 19 17:05:27 2022 +0300 description: nginx-1.23.1-RELEASE diffstat: docs/xml/nginx/changes.xml | 66 ++ 1 files

[nginx] release-1.23.1 tag

2022-07-19 Thread Konstantin Pavlov
details: https://hg.nginx.org/nginx/rev/069a4813e8d6 branches: changeset: 8061:069a4813e8d6 user: Maxim Dounin date: Tue Jul 19 17:05:27 2022 +0300 description: release-1.23.1 tag diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff

Re: nginx-1.23.1 changes draft

2022-07-19 Thread Maxim Dounin
Hello! On Tue, Jul 19, 2022 at 04:23:14PM +0300, Maxim Dounin wrote: > Changes with nginx 1.23.119 Jul 2022 > > *) Feature: memory usage optimization in configurations with SSL >proxying. > > *) Feature: looking up of IPv4 addresses while

Re: nginx-1.23.1 changes draft

2022-07-19 Thread Sergey Kandaurov
> On 19 Jul 2022, at 17:23, Maxim Dounin wrote: > > Hello! > > > Changes with nginx 1.23.119 Jul 2022 > >*) Feature: memory usage optimization in configurations with SSL > proxying. > >*) Feature: looking up of IPv4 addresses while

Re: [PATCH] Documented the "ipv4=off" parameter of the "resolver" directive

2022-07-19 Thread Maxim Dounin
Hello! On Tue, Jul 19, 2022 at 02:24:49PM +0100, Yaroslav Zhuravlev wrote: > Here's a slightly reworked version: > > "By default, nginx will look up both IPv4 and IPv6 addresses > while resolving. If looking up of IPv4 or IPv6 addresses is not > desired, the ipv4=off (1.23.1) or the ipv6=off

Re: nginx-1.23.1 changes draft

2022-07-19 Thread Maxim Konovalov
On 19.07.2022 17:23, Maxim Dounin wrote: Hello! Changes with nginx 1.23.119 Jul 2022 [...] Изменения в nginx 1.23.1 19.07.2022 [...] Looks good. -- Maxim Konovalov

Re: [PATCH] Documented the "ipv4=off" parameter of the "resolver" directive

2022-07-19 Thread Yaroslav Zhuravlev
[...] Hello, Here's a slightly reworked version: "By default, nginx will look up both IPv4 and IPv6 addresses while resolving. If looking up of IPv4 or IPv6 addresses is not desired, the ipv4=off (1.23.1) or the ipv6=off parameter can be specified." There is also an alternative variant:

nginx-1.23.1 changes draft

2022-07-19 Thread Maxim Dounin
Hello! Changes with nginx 1.23.119 Jul 2022 *) Feature: memory usage optimization in configurations with SSL proxying. *) Feature: looking up of IPv4 addresses while resolving now can be disabled with the "ipv4=off" parameter of the