[PATCH] Support of proxy v2 protocol for NGINX stream module

2021-04-09 Thread Vasiliy Soshnikov
diff -r 82e174e47663 src/core/ngx_proxy_protocol.c --- a/src/core/ngx_proxy_protocol.c Thu Apr 08 00:16:30 2021 +0300 +++ b/src/core/ngx_proxy_protocol.c Fri Apr 09 16:10:29 2021 +0300 @@ -13,6 +13,34 @@ #define NGX_PROXY_PROTOCOL_AF_INET6 2 +#define NGX_PROXY_PROTOCOL_V2_SIG

Re: [PATCH] Support of proxy v2 protocol for NGINX stream module

2021-04-09 Thread Vasiliy Soshnikov
Hello, Yeah. The proposed design would work well for me. On Fri, Apr 9, 2021 at 5:17 PM Maxim Dounin wrote: > Hello! > > On Fri, Apr 09, 2021 at 04:26:52PM +0300, Vasiliy Soshnikov wrote: > > [...] > > > +/** SSL TLVs */ > > + > > +#if (NGX_ST

Re: capture ngnix user login information

2022-02-28 Thread Vasiliy Soshnikov
Hello, please could you provide you provide more details? Ex: get some data from the input form and put to the log, or something like this. Отправлено из myMail для iOS понедельник, 28 февраля 2022 г., 16:25 +0300 от vinayaka.ho...@alliancebernstein.com : >Please let me know how to

Re: announcing freenginx.org

2024-02-14 Thread Vasiliy Soshnikov
Hello Maxim, Sad to read it. I can't promise that, but I will try to support your project by using freenginx at least. I wish good luck to freenginx! ___ nginx-devel mailing list nginx-devel@nginx.org

Re: processing a request without body

2023-12-13 Thread Vasiliy Soshnikov
Hello, > Is there something similar done before? I'm thinking that you would like to test the incoming path and execute some logic. You could use a header filter for that and also you could keep a body filter for handling the request body. Also pls take a look into PHASEs, I'm thinking you could

Re: processing a request without body

2023-12-13 Thread Vasiliy Soshnikov
Sorry I'm bad. I understood that header filters won't help you. Use the ACCESS PHASE handler, it should work fine for you. On Wed, Dec 13, 2023 at 10:57 PM Vasiliy Soshnikov < vasiliy.soshni...@gmail.com> wrote: > Hello, > > > Is there something similar done before? > I'm th