summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_request.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2021-06-28Disabled control characters in the Host header.Maxim Dounin1-3/+4
2021-06-28Improved logging of invalid headers.Maxim Dounin1-1/+3
2021-06-28Disabled spaces in URIs (ticket #196).Maxim Dounin1-1/+1
2021-06-28Disabled requests with both Content-Length and Transfer-Encoding.Maxim Dounin1-2/+9
2021-06-28Added CONNECT method rejection.Maxim Dounin1-0/+7
2021-06-28Moved TRACE method rejection to a better place.Maxim Dounin1-7/+7
2021-06-01Fixed SSL logging with lingering close.Maxim Dounin1-0/+2
2021-05-24Fixed log action when using SSL certificates with variables.Maxim Dounin1-0/+2
2021-03-24Cancel keepalive and lingering close on EOF better (ticket #2145).Sergey Kandaurov1-5/+5
2021-02-11Reuse of connections in lingering close.Maxim Dounin1-1/+4
2021-01-19Core: removed post_accept_timeout.Maxim Dounin1-13/+21
2020-12-10Removed extra allocation for r->uri.Maxim Dounin1-1/+1
2020-12-10Fixed parsing of absolute URIs with empty path (ticket #2079).Maxim Dounin1-2/+6
2020-12-08SSL: fixed SSL shutdown on lingering close.Ruslan Ermilov1-2/+0
2020-11-06SSL: fixed non-working SSL shutdown on lingering close.Ruslan Ermilov1-8/+31
2020-11-06Removed dead code from ngx_http_set_keepalive().Ruslan Ermilov1-7/+0
2020-10-22SSL: ssl_reject_handshake directive (ticket #195).Maxim Dounin1-14/+27
2020-09-24SSL: abort handshake on SSL_set_SSL_CTX() errors.Sergey Kandaurov1-1/+4
2020-08-10SSL: disabled sending shutdown after ngx_http_test_reading().Maxim Dounin1-0/+6
2020-08-06Added size check to ngx_http_alloc_large_header_buffer().Maxim Dounin1-0/+6
2020-05-22SSL: client certificate validation with OCSP (ticket #1534).Roman Arutyunyan1-0/+12
2020-02-28Simplified subrequest finalization.Roman Arutyunyan1-23/+11
2020-03-02Fixed premature background subrequest finalization.Dmitry Volyntsev1-9/+9
2020-02-27Disabled connection reuse while in SSL handshake.Sergey Kandaurov1-2/+2
2020-02-20Disabled duplicate "Host" headers (ticket #1724).Maxim Dounin1-2/+10
2020-02-20Removed "Transfer-Encoding: identity" support.Maxim Dounin1-4/+1
2020-02-20Disabled multiple Transfer-Encoding headers.Maxim Dounin1-1/+1
2019-03-05SSL: moved c->ssl->handshaked check in server name callback.Maxim Dounin1-6/+6
2019-03-03SSL: server name callback changed to return fatal errors.Maxim Dounin1-7/+22
2019-03-03SSL: server name callback changed to return SSL_TLSEXT_ERR_OK.Maxim Dounin1-6/+6
2019-02-25SSL: fixed possible segfault with dynamic certificates.Maxim Dounin1-1/+1
2019-02-25SSL: passwords support for dynamic certificate loading.Maxim Dounin1-1/+2
2019-02-25SSL: variables support in ssl_certificate and ssl_certificate_key.Maxim Dounin1-19/+105
2019-02-25Style.Maxim Dounin1-0/+1
2018-10-02SSL: fixed segfault on renegotiation (ticket #1646).Maxim Dounin1-1/+5
2018-09-21Fixed socket leak with "return 444" in error_page (ticket #274).Maxim Dounin1-24/+26
2018-09-10Lingering close changed to handle NGX_AGAIN.Maxim Dounin1-0/+4
2018-07-16SSL: fixed SSL_clear_options() usage with OpenSSL 1.1.0+.Maxim Dounin1-1/+1
2018-07-12Allow resetting connections closed by "return 444" (ticket #905).Ruslan Ermilov1-0/+1
2018-06-07Added r->schema.Ruslan Ermilov1-0/+5
2018-06-07Removed extraneous check while processing request line.Ruslan Ermilov1-1/+1
2018-04-24SSL: detect "listen ... ssl" without certificates (ticket #178).Maxim Dounin1-12/+1
2018-03-17gRPC: special handling of the TE request header.Maxim Dounin1-0/+4
2018-02-15Expose more headers with NGX_HTTP_HEADERS.Ruslan Ermilov1-1/+1
2018-01-30SSL: using default server context in session remove (closes #1464).Sergey Kandaurov1-2/+2
2017-11-20Fixed worker_shutdown_timeout in various cases.Maxim Dounin1-0/+7
2017-03-24Added support for trailers in HTTP responses.Piotr Sikora1-0/+8
2017-05-29Fixed background requests with asynchronous operations.Roman Arutyunyan1-5/+3
2017-05-29SSL: set TCP_NODELAY on SSL connections before handshake.Maxim Dounin1-8/+17
2017-05-26Introduced ngx_tcp_nodelay().Ruslan Ermilov1-24/+3