| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2016-09-15 | Stream: phases. | Roman Arutyunyan | 1 | -166/+26 | |
| 2016-09-15 | Stream: filters. | Roman Arutyunyan | 1 | -0/+4 | |
| 2016-09-01 | Stream: realip module. | Dmitry Volyntsev | 1 | -0/+9 | |
| 2016-09-06 | Stream: allow using the session context inside handlers. | Dmitry Volyntsev | 1 | -21/+16 | |
| Previously, it was not possible to use the stream context inside ngx_stream_init_connection() handlers. Now, limit_conn, access handlers, as well as those added later, can create their own contexts. | |||||
| 2016-09-06 | Stream: the "proxy_protocol" parameter of the "listen" directive. | Dmitry Volyntsev | 1 | -0/+94 | |
| 2016-09-06 | Stream: postpone session initialization under accept mutex. | Dmitry Volyntsev | 1 | -3/+38 | |
| Previously, it was possible that some system calls could be invoked while holding the accept mutex. This is clearly wrong as it prevents incoming connections from being accepted as quickly as possible. | |||||
| 2016-09-05 | Stream: log module. | Vladimir Homutov | 1 | -0/+8 | |
| 2016-08-11 | Stream: the $status variable. | Roman Arutyunyan | 1 | -12/+34 | |
| The stream session status is one of the following: 200 - normal completion 403 - access forbidden 500 - internal server error 502 - bad gateway 503 - limit conn | |||||
| 2016-08-26 | Stream: the $session_time variable. | Vladimir Homutov | 1 | -0/+5 | |
| The variable keeps time spent on processing the stream session. | |||||
| 2016-07-04 | Stream: variables and script. | Vladimir Homutov | 1 | -0/+9 | |
| This is a port of corresponding http code with unrelated features excluded. | |||||
| 2016-03-18 | Stream: additional logging for UDP. | Vladimir Homutov | 1 | -3/+5 | |
| 2016-01-20 | Stream: UDP proxy. | Roman Arutyunyan | 1 | -2/+5 | |
| 2015-08-13 | Stream: fixed potential error log buffer overrun. | Vladimir Homutov | 1 | -1/+3 | |
| Found by Duan Jiong <djduanjiong@gmail.com>. | |||||
| 2015-08-10 | Stream: the "tcp_nodelay" directive. | Vladimir Homutov | 1 | -0/+19 | |
| 2015-06-18 | Stream: connection limiting module. | Vladimir Homutov | 1 | -0/+9 | |
| stream { limit_conn_zone $binary_remote_addr zone=perip:1m; limit_conn_log_level error; server { ... limit_conn perip 1; } } | |||||
| 2015-06-04 | Stream: access module. | Vladimir Homutov | 1 | -12/+25 | |
| stream { server { ... allow 127.0.0.1; deny all; } } | |||||
| 2015-04-25 | Core: the ngx_set_connection_log() macro. | Vladimir Homutov | 1 | -1/+1 | |
| The http and stream versions of this macro were identical. | |||||
| 2015-04-20 | Stream: port from NGINX+. | Ruslan Ermilov | 1 | -0/+296 | |
