Compare commits

...

3 Commits

Author SHA1 Message Date
Roman Arutyunyan 0609736a92 SSL: logging level of the "ech_required" TLS alert.
The alert is send by a client after its ECH configuration was rejected by
a server.
2025-12-17 13:49:06 +04:00
Aleksei Bavshin 7c2524a692 Fixed duplicate ids in the bug report template. 2025-12-16 14:22:33 -07:00
Aleksei Bavshin 5c2947d844 Version bump. 2025-12-16 14:22:33 -07:00
3 changed files with 5 additions and 4 deletions

View File

@ -58,7 +58,7 @@ body:
required: true required: true
- type: textarea - type: textarea
id: environment id: version
attributes: attributes:
label: NGINX version and build configuration options label: NGINX version and build configuration options
description: Please provide details about your NGINX build. description: Please provide details about your NGINX build.
@ -79,7 +79,7 @@ body:
required: true required: true
- type: textarea - type: textarea
id: environment id: architecture
attributes: attributes:
label: Architecture where NGINX is being built and/or deployed label: Architecture where NGINX is being built and/or deployed
description: Please provide details about your deployment environment. description: Please provide details about your deployment environment.

View File

@ -9,8 +9,8 @@
#define _NGINX_H_INCLUDED_ #define _NGINX_H_INCLUDED_
#define nginx_version 1029004 #define nginx_version 1029005
#define NGINX_VERSION "1.29.4" #define NGINX_VERSION "1.29.5"
#define NGINX_VER "nginx/" NGINX_VERSION #define NGINX_VER "nginx/" NGINX_VERSION
#ifdef NGX_BUILD #ifdef NGX_BUILD

View File

@ -4012,6 +4012,7 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err,
|| n == SSL_R_TLSV1_ALERT_USER_CANCELLED /* 1090 */ || n == SSL_R_TLSV1_ALERT_USER_CANCELLED /* 1090 */
|| n == SSL_R_TLSV1_ALERT_NO_RENEGOTIATION /* 1100 */ || n == SSL_R_TLSV1_ALERT_NO_RENEGOTIATION /* 1100 */
#endif #endif
|| n == 1121 /* SSL_R_TLSV1_ALERT_ECH_REQUIRED */
) )
{ {
switch (c->log_error) { switch (c->log_error) {