Re: NGINX has moved to Github!

2024-09-06 Thread Praveen Chaudhary
This is awesome news, Roman. Thanks for the effort towards it, I really appreciate it. On Fri, Sep 6, 2024 at 8:12 AM Roman Arutyunyan wrote: > Hello from NGINX! > > Today we're thrilled to announce that the official NGINX Open Source > development > repository has moved from Mercurial to GitHub

Re: Inquiry: Are nginx.org repos migrating from mercurial to git?

2024-08-30 Thread Praveen Chaudhary
+1 for this question. On Fri, Aug 30, 2024 at 10:15 AM Thomas Ward via nginx-devel < nginx-devel@nginx.org> wrote: > Seeing a lot of messages related to moving from mercurial to git here in > the mailing list. Are the nginx.org code repos shifting to Git instead of > Mercurial? > > > > Sent from

Re: [nginx] CONF: Make ssl_client_certificate directive optional with TLSv1.3

2024-08-27 Thread Praveen Chaudhary
check simple as this: *if (conf->client_certificate.len == 0 && conf->trusted_certificate.len == 0 && conf->verify != 3) {* *PATCH:* # HG changeset patch # User Praveen Chaudhary # Date 1723406727 25200 # Sun Aug 11 13:05:27 2024 -0700 # Node ID a5525b8ea

Re: [nginx] CONF: Make ssl_client_certificate directive optional with TLSv1.3

2024-08-21 Thread Praveen Chaudhary
, if Nginx today supports SSLv2. On Mon, Aug 19, 2024 at 4:22 PM Praveen Chaudhary wrote: > Thanks Aleksei for the review. > > Agree, It makes sense to have explicit error message to require either > ssl_client_certificate or ssl_trusted_certificate. Because: > Nginx prints error

Re: [nginx] CONF: Make ssl_client_certificate directive optional with TLSv1.3

2024-08-19 Thread Praveen Chaudhary
t;SSL certificate error" is seen. V2 Patch. [Keeping same Subject] # HG changeset patch # User Praveen Chaudhary # Date 1723406727 25200 # Sun Aug 11 13:05:27 2024 -0700 # Node ID a5525b8eac0e1f10da42b7367cd5296fb29f4787 # Parent 8796dfbe7177cb0be2a53bcdb4d25cc64a58d2a7 Make ssl_client_c

[nginx] CONF: Make ssl_client_certificate directive optional with TLSv1.3

2024-08-16 Thread Praveen Chaudhary
# User Praveen Chaudhary # Date 1723406727 25200 # Sun Aug 11 13:05:27 2024 -0700 # Node ID 199a35c74b60437da9d22a70d257507b4afb1878 # Parent b5550a7f16c795f394f9d1ac87132dd2b7ef0e41 Make ssl_client_certificate directive optional with TLSv1.3. - As per RFC 8446 Section 4.2.4, server MAY (not

[PATCH 1 of 1] CONF: make ssl_client_certificate optional with only tlsv1_3

2024-08-12 Thread Praveen Chaudhary
prefered. *PATCH:* # HG changeset patch # User Praveen Chaudhary # Date 1723406727 25200 # Sun Aug 11 13:05:27 2024 -0700 # Node ID 9006e478c2f2a2e023fba104aff9c175c3e17e49 # Parent b5550a7f16c795f394f9d1ac87132dd2b7ef0e41 Make ssl_client_certificate directive optional with TLSv1.3. - As per

[PATCH 1 of 1] CONF: make ssl_client_certificate optional with only tlsv1_3

2024-08-12 Thread Praveen Chaudhary
Hi Nginx Devs This is my first Nginx patch. So guide me, if mistakes are made while following the process. *Testing done:* Ran nginx-tests. Got the same results with or without patch. *PATCH description* is in commit logs. *Code doubts:* Currently I used [~NGX_SSL_TLSv1_3] to find if configured