diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2021-04-06 08:09:29 -0400 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2021-04-06 08:09:29 -0400 |
commit | 9c489c4d483814810029c4d5eeedcd5ba787f060 (patch) | |
tree | efb155adec8a1a75240de5b95bcca59dbc68335f /www/nginx-devel/files | |
parent | games/fheroes2: update to 0.9.2 (diff) |
Update from 1.19.8 to 1.19.9.
Update NGINX JavaScript module from 0.5.2 to 0.5.3.
Remove needless patches.
<ChangeLog for nginx 1.19.9>
*) Bugfix: nginx could not be built with the mail proxy module, but
without the ngx_mail_ssl_module; the bug had appeared in 1.19.8.
*) Bugfix: "upstream sent response body larger than indicated content
length" errors might occur when working with gRPC backends; the bug
had appeared in 1.19.1.
*) Bugfix: nginx might not close a connection till keepalive timeout
expiration if the connection was closed by the client while
discarding the request body.
*) Bugfix: nginx might not detect that a connection was already closed
by the client when waiting for auth_delay or limit_req delay, or when
working with backends.
*) Bugfix: in the eventport method.
</ChangeLog>
<ChangeLog for njs 0.5.3>
nginx modules:
*) Feature: added the "js_var" directive.
</ChangeLog>
Diffstat (limited to 'www/nginx-devel/files')
-rw-r--r-- | www/nginx-devel/files/patch-src-mail-ngx_mail_auth_http_module.c | 26 | ||||
-rw-r--r-- | www/nginx-devel/files/patch-src-mail-ngx_mail_handler.c | 20 |
2 files changed, 0 insertions, 46 deletions
diff --git a/www/nginx-devel/files/patch-src-mail-ngx_mail_auth_http_module.c b/www/nginx-devel/files/patch-src-mail-ngx_mail_auth_http_module.c deleted file mode 100644 index af8dcda8f7a2..000000000000 --- a/www/nginx-devel/files/patch-src-mail-ngx_mail_auth_http_module.c +++ /dev/null @@ -1,26 +0,0 @@ ---- src/mail/ngx_mail_auth_http_module.c.orig 2021-03-09 12:50:37.389186000 -0500 -+++ src/mail/ngx_mail_auth_http_module.c 2021-03-09 12:55:40.877872000 -0500 -@@ -1135,10 +1135,10 @@ - size_t len; - ngx_buf_t *b; - ngx_str_t login, passwd; -+ ngx_connection_t *c; - #if (NGX_MAIL_SSL) - ngx_str_t verify, subject, issuer, serial, fingerprint, - raw_cert, cert; -- ngx_connection_t *c; - ngx_mail_ssl_conf_t *sslcf; - #endif - ngx_mail_core_srv_conf_t *cscf; -@@ -1151,9 +1151,10 @@ - return NULL; - } - -+ c = s->connection; -+ - #if (NGX_MAIL_SSL) - -- c = s->connection; - sslcf = ngx_mail_get_module_srv_conf(s, ngx_mail_ssl_module); - - if (c->ssl && sslcf->verify) { diff --git a/www/nginx-devel/files/patch-src-mail-ngx_mail_handler.c b/www/nginx-devel/files/patch-src-mail-ngx_mail_handler.c deleted file mode 100644 index b2c43f2cdd78..000000000000 --- a/www/nginx-devel/files/patch-src-mail-ngx_mail_handler.c +++ /dev/null @@ -1,20 +0,0 @@ ---- src/mail/ngx_mail_handler.c.orig 2021-03-10 10:39:31.807351000 -0500 -+++ src/mail/ngx_mail_handler.c 2021-03-10 10:41:28.739497000 -0500 -@@ -273,14 +273,15 @@ - ngx_mail_init_session_handler(ngx_event_t *rev) - { - ngx_connection_t *c; -- ngx_mail_session_t *s; - - c = rev->data; -- s = c->data; - - #if (NGX_MAIL_SSL) - { -+ ngx_mail_session_t *s; - ngx_mail_ssl_conf_t *sslcf; -+ -+ s = c->data; - - sslcf = ngx_mail_get_module_srv_conf(s, ngx_mail_ssl_module); - |