| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-05-18 | Upstream hash: consistency across little/big endianness. | Sergey Kandaurov | 1 | -4/+15 | |
| 2015-05-16 | Upstream: $upstream_connect_time. | Ruslan Ermilov | 2 | -1/+14 | |
| The variable keeps time spent on establishing a connection with the upstream server. | |||||
| 2015-05-16 | Upstream: times to obtain header/response are stored as ngx_msec_t. | Ruslan Ermilov | 2 | -30/+13 | |
| 2015-04-29 | Removed deprecated HTTP directives. | Ruslan Ermilov | 1 | -33/+0 | |
| 2015-04-25 | Core: the ngx_set_connection_log() macro. | Vladimir Homutov | 3 | -15/+4 | |
| The http and stream versions of this macro were identical. | |||||
| 2015-04-24 | Merge proxy_protocol setting of listen directives. | Roman Arutyunyan | 1 | -1/+4 | |
| It's now enough to specify proxy_protocol option in one listen directive to enable it in all servers listening on the same address/port. Previously, the setting from the first directive was always used. | |||||
| 2015-04-23 | Removed the obsolete rtsig module. | Ruslan Ermilov | 1 | -1/+1 | |
| 2015-04-22 | Removed the obsolete aio module. | Ruslan Ermilov | 2 | -2/+2 | |
| 2015-04-22 | Upstream: allow multiple upstreams to use the same shared zone. | Ruslan Ermilov | 1 | -42/+56 | |
| 2015-04-21 | Memcached: enabled ranges. | Martin Mlynář | 1 | -0/+1 | |
| 2015-04-21 | Upstream: simplified ip_hash and hash peer selection code. | Ruslan Ermilov | 2 | -44/+16 | |
| Now that peers are stored as a list, the weighted and unweighted cases became nearly identical. | |||||
| 2015-04-20 | Limit req: removed check for unknown limit_req_zone. | Sergey Kandaurov | 1 | -7/+0 | |
| With 48b3d5ddfb03, it's possible to specify limit_req_zone after limit_req. | |||||
| 2015-04-19 | Upstream: fixed unlocked access to peer->conns. | Ruslan Ermilov | 1 | -3/+6 | |
| 2015-04-16 | Upstream: get rid of questionable micro-optimization in ip_hash. | Ruslan Ermilov | 1 | -7/+2 | |
| If a peer was initially skipped due to max_fails, there's no reason not to try it again if enough time has passed, and the next_upstream logic is in action. This also reduces diffs with NGINX Plus. | |||||
| 2015-04-14 | Upstream: the "zone" directive. | Ruslan Ermilov | 4 | -6/+380 | |
| Upstreams with the "zone" directive are kept in shared memory, with a consistent view of all worker processes. | |||||
| 2015-04-14 | Upstreams: locking. | Ruslan Ermilov | 5 | -29/+50 | |
| 2015-04-10 | Upstream: store peers as a linked list. | Ruslan Ermilov | 5 | -86/+139 | |
| This is an API change. | |||||
| 2015-04-10 | Upstream: track the number of active connections to upstreams. | Ruslan Ermilov | 5 | -122/+35 | |
| This also simplifies the implementation of the least_conn module. | |||||
| 2015-04-07 | Upstream: abbreviated SSL handshake may interact badly with Nagle. | Ruslan Ermilov | 1 | -1/+25 | |
| 2015-04-06 | Request body: always flush buffers if request buffering is off. | Valentin Bartenev | 1 | -0/+2 | |
| This fixes unbuffered proxying to SSL backends, since it prevents ngx_ssl_send_chain() from accumulation of request body in the SSL buffer. | |||||
| 2015-04-01 | Cache: added support for reading of the header in thread pools. | Valentin Bartenev | 2 | -19/+109 | |
| 2015-03-31 | Fixed invalid access to complex value defined as an empty string. | Sergey Kandaurov | 2 | -5/+5 | |
| Found by Valgrind. | |||||
| 2015-03-23 | SPDY: always push pending data. | Valentin Bartenev | 1 | -51/+40 | |
| This helps to avoid suboptimal behavior when a client waits for a control frame or more data to increase window size, but the frames have been delayed in the socket buffer. The delays can be caused by bad interaction between Nagle's algorithm on nginx side and delayed ACK on the client side or by TCP_CORK/TCP_NOPUSH if SPDY was working without SSL and sendfile() was used. The pushing code is now very similar to ngx_http_set_keepalive(). | |||||
| 2015-03-23 | SPDY: fixed error handling in ngx_http_spdy_send_output_queue(). | Valentin Bartenev | 1 | -8/+12 | |
| 2015-03-26 | Proxy: fixed proxy_request_buffering and chunked with preread body. | Maxim Dounin | 1 | -3/+4 | |
| If any preread body bytes were sent in the first chain, chunk size was incorrectly added before the whole chain, including header, resulting in an invalid request sent to upstream. Fixed to properly add chunk size after the header. | |||||
| 2015-03-23 | Upstream: uwsgi_request_buffering, scgi_request_buffering. | Maxim Dounin | 2 | -2/+44 | |
| 2015-03-23 | FastCGI: fastcgi_request_buffering. | Maxim Dounin | 1 | -18/+342 | |
| 2015-03-23 | Proxy: proxy_request_buffering chunked support. | Maxim Dounin | 1 | -6/+216 | |
| 2015-03-23 | Request body: unbuffered reading. | Maxim Dounin | 8 | -25/+306 | |
| The r->request_body_no_buffering flag was introduced. It instructs client request body reading code to avoid reading the whole body, and to call post_handler early instead. The caller should use the ngx_http_read_unbuffered_request_body() function to read remaining parts of the body. Upstream module is now able to use this mode, if configured with the proxy_request_buffering directive. | |||||
| 2015-03-23 | Request body: filters support. | Maxim Dounin | 5 | -8/+22 | |
| 2015-03-23 | Request body: moved request body writing to save filter. | Maxim Dounin | 1 | -14/+8 | |
| 2015-03-23 | Request body: free chain links in ngx_http_write_request_body(). | Maxim Dounin | 1 | -2/+7 | |
| 2015-03-23 | Format specifier fixed for file size of buffers. | Maxim Dounin | 2 | -5/+5 | |
| 2015-03-23 | Proxy: fixed proxy_set_body with proxy_cache. | Maxim Dounin | 1 | -0/+1 | |
| If the last header evaluation resulted in an empty header, the e.skip flag was set and was not reset when we've switched to evaluation of body_values. This incorrectly resulted in body values being skipped instead of producing some correct body as set by proxy_set_body. Fix is to properly reset the e.skip flag. As the problem only appeared if the last potentially non-empty header happened to be empty, it only manifested itself if proxy_set_body was used with proxy_cache. | |||||
| 2015-03-23 | Removed stub implementation of win32 mutexes. | Ruslan Ermilov | 1 | -2/+0 | |
| 2015-03-23 | SSL: avoid SSL_CTX_set_tmp_rsa_callback() call with LibreSSL. | Maxim Dounin | 1 | -0/+2 | |
| LibreSSL removed support for export ciphers and a call to SSL_CTX_set_tmp_rsa_callback() results in an error left in the error queue. This caused alerts "ignoring stale global SSL error (...called a function you should not call) while SSL handshaking" on a first connection in each worker process. | |||||
| 2015-03-20 | Removed busy locks. | Ruslan Ermilov | 3 | -362/+0 | |
| 2015-03-20 | Removed ngx_connection_t.lock. | Ruslan Ermilov | 1 | -3/+0 | |
| 2015-03-15 | SPDY: fixed format specifier in logging. | Xiaochen Wang | 1 | -1/+1 | |
| 2015-03-14 | Added support for offloading read() in thread pools. | Valentin Bartenev | 4 | -3/+159 | |
| 2015-03-04 | Renamed NGX_THREADS to NGX_OLD_THREADS because of deprecation. | Ruslan Ermilov | 1 | -1/+1 | |
| It's mostly dead code and the original idea of worker threads has been rejected. | |||||
| 2015-03-17 | Overflow detection in ngx_http_parse_chunked(). | Ruslan Ermilov | 1 | -4/+8 | |
| 2015-03-17 | Overflow detection in ngx_http_range_parse(). | Ruslan Ermilov | 1 | -1/+12 | |
| 2015-03-13 | The "aio" directive parser made smarter. | Ruslan Ermilov | 2 | -27/+52 | |
| It now prints meaningful warnings on all platforms. No functional changes. | |||||
| 2015-03-12 | Deprecated "aio sendfile". | Ruslan Ermilov | 3 | -9/+4 | |
| Specifying "sendfile on" along with "aio on" activates the aio pre-loading mode for sendfile(). | |||||
| 2015-03-04 | Proxy: use an appropriate error on memory allocation failure. | Ruslan Ermilov | 1 | -1/+1 | |
| 2015-03-04 | Style: moved ngx_http_ephemeral() macro to ngx_http_request.h. | Ruslan Ermilov | 2 | -3/+3 | |
| 2015-03-03 | Upstream keepalive: drop ready flag on EAGAIN from recv(MSG_PEEK). | Valentin Bartenev | 1 | -1/+1 | |
| Keeping the ready flag in this case might results in missing notification of broken connection until nginx tried to use it again. While there, stale comment about stale event was removed since this function is also can be called directly. | |||||
| 2015-03-03 | Style. | Maxim Dounin | 1 | -2/+2 | |
| Noted by Ruslan Ermilov. | |||||
| 2015-03-02 | Upstream: upstream argument in ngx_http_upstream_process_request(). | Maxim Dounin | 1 | -6/+6 | |
| In case of filter finalization, r->upstream might be changed during the ngx_event_pipe() call. Added an argument to preserve it while calling the ngx_http_upstream_process_request() function. | |||||
