Roman Arutyunyan
8ba626ccd7
Slice filter.
...
Splits a request into subrequests, each providing a specific range of response.
The variable "$slice_range" must be used to set subrequest range and proper
cache key. The directive "slice" sets slice size.
The following example splits requests into 1-megabyte cacheable subrequests.
server {
listen 8000;
location / {
slice 1m;
proxy_cache cache;
proxy_cache_key $uri$is_args$args$slice_range;
proxy_set_header Range $slice_range;
proxy_cache_valid 200 206 1h;
proxy_pass http://127.0.0.1:9000 ;
}
}
2015-12-07 16:30:48 +03:00
Valentin Bartenev
ee37ff613f
The HTTP/2 implementation (RFC 7240, 7241).
...
The SPDY support is removed, as it's incompatible with the new module.
2015-09-11 20:13:06 +03:00
Vladimir Homutov
14ff3d4f87
Stream: connection limiting module.
...
stream {
limit_conn_zone $binary_remote_addr zone=perip:1m;
limit_conn_log_level error;
server {
...
limit_conn perip 1;
}
}
2015-06-18 14:17:30 +03:00
Vladimir Homutov
8ab1aa612d
Stream: access module.
...
stream {
server {
...
allow 127.0.0.1;
deny all;
}
}
2015-06-04 13:04:12 +03:00
Ruslan Ermilov
33b8e5bc06
Removed the obsolete rtsig module.
2015-04-23 14:17:40 +03:00
Ruslan Ermilov
c799c82faa
Stream: port from NGINX+.
2015-04-20 13:05:11 +03:00
Ruslan Ermilov
cf31347ee8
Upstream: the "zone" directive.
...
Upstreams with the "zone" directive are kept in shared memory,
with a consistent view of all worker processes.
2015-04-14 19:01:25 +03:00
Valentin Bartenev
305fc021db
Thread pools implementation.
2015-03-14 17:37:07 +03:00
Roman Arutyunyan
9b5a17b5e2
Upstream: generic hash module.
2014-06-02 16:16:22 +04:00
Maxim Dounin
f86169ae7b
Mail: mail dependencies are now honored while building addons.
2013-09-30 22:09:54 +04:00
Valentin Bartenev
182a05b9d5
Events: support for EPOLLRDHUP (ticket #320 ).
...
Since Linux 2.6.17, epoll is able to report about peer half-closed connection
using special EPOLLRDHUP flag on a read event.
2013-07-12 14:51:07 +04:00
Maxim Dounin
4c53a38fb5
Auth request module import.
2013-08-21 19:19:47 +04:00
Valentin Bartenev
2686cb4452
Preliminary experimental support for SPDY draft 2.
2013-03-20 10:36:57 +00:00
Maxim Dounin
90bd33e8eb
Gunzip filter import.
2012-09-10 16:52:47 +00:00
Ruslan Ermilov
42444811b9
Fixed compile-time conditionals used to detect if X-Forwarded-For support
...
is needed.
2012-06-21 11:02:22 +00:00
Maxim Dounin
4cb4e8d179
Upstream: least_conn balancer module.
2012-06-03 23:21:26 +00:00
Valentin Bartenev
430ab81a72
Fixed building --with-cpp_test_module on some systems.
2012-05-17 15:12:45 +00:00
Maxim Konovalov
f8d59e33f3
Copyright updated.
2012-01-18 15:07:43 +00:00
Valentin Bartenev
bc5191c7bc
Added support for regex study and PCRE JIT (ticket #41 ) optimizations on
...
configuration phase.
2011-12-26 13:10:36 +00:00
Valentin Bartenev
255e20ad21
Renamed ngx_http_limit_zone_module to ngx_http_limit_conn_module.
2011-11-14 14:04:42 +00:00
Maxim Dounin
44002e541f
Upstream keepalive module.
2011-09-15 19:28:18 +00:00
Igor Sysoev
dde4d7e300
ngx_http_mp4_module
2011-09-09 10:22:34 +00:00
Igor Sysoev
5dc5945ccf
"$apr1", "{PLAIN}", and "{SSHA}" password methods in auth basic module
...
patch by Maxim Dounin
2011-05-16 14:54:50 +00:00
Igor Sysoev
5fffff997f
gzip_disable degradation
2010-10-04 15:03:00 +00:00
Igor Sysoev
ee5f9e50b9
ngx_http_scgi_module
2010-06-18 15:51:14 +00:00
Igor Sysoev
3a881d30b5
import original ngx_http_uwsgi_module version
2010-06-01 15:53:11 +00:00
Igor Sysoev
fadd4bd25c
ngx_http_split_clients_module
2010-05-14 09:02:10 +00:00
Igor Sysoev
3ca4061874
remove unused ./configure define's
2010-05-13 13:58:18 +00:00
Igor Sysoev
5cc7eaa9de
change ngx_http_ssi_filter and ngx_http_charset_filter order
2010-04-01 10:19:02 +00:00
Igor Sysoev
a40c395fe9
fix typo
2010-03-30 15:04:41 +00:00
Igor Sysoev
4985109dba
ngx_http_degradation_module
2009-11-16 12:20:00 +00:00
Igor Sysoev
a962506498
FreeBSD and Linux AIO support
2009-08-28 08:12:35 +00:00
Igor Sysoev
bc10147b9f
ngx_http_geoip_module
2009-07-20 07:10:43 +00:00
Igor Sysoev
d4cdd8582b
add comment
2009-05-01 18:44:50 +00:00
Igor Sysoev
e2ada61896
ngx_http_image_filter_module
2009-05-01 18:42:09 +00:00
Igor Sysoev
52859f2f13
a prelimiary proxy cache support
2009-03-23 13:14:51 +00:00
Igor Sysoev
abe378e820
ngx_http_limit_req_module
2008-11-10 15:22:33 +00:00
Igor Sysoev
e52991ecbe
ngx_http_secure_link_module
2008-09-27 13:22:10 +00:00
Igor Sysoev
2e2b81d213
ngx_http_random_index_module
2008-09-05 15:45:55 +00:00
Igor Sysoev
49f06858e9
fix ngx_cpp_test_module configure
2008-08-13 08:29:27 +00:00
Igor Sysoev
e24b57ad9f
ngx_cpp_test_module
2008-08-05 19:32:50 +00:00
Igor Sysoev
1ae389d2f7
ngx_http_xslt_filter_module
2008-08-04 14:48:15 +00:00
Igor Sysoev
85dd8fc5b6
ngx_google_perftools_module
2008-03-18 10:36:27 +00:00
Igor Sysoev
6b0de80867
fix typo
2008-03-12 21:10:48 +00:00
Igor Sysoev
e19a5f9e8f
set ngx_http_gzip_static module just before ngx_http_static_module
2007-12-29 08:38:42 +00:00
Igor Sysoev
c16b005f30
ngx_http_gzip_static_module and gzip_disable
2007-12-27 14:21:59 +00:00
Igor Sysoev
48714085dd
ngx_mail_pop3_module, ngx_mail_imap_module, and ngx_mail_smtp_module
2007-09-15 16:51:16 +00:00
Igor Sysoev
d9bb8e3894
ngx_http_sub_filter_module
2007-04-19 17:54:23 +00:00
Igor Sysoev
02c8d181a4
Many changes:
...
*) rename imap to mail, sort pop3/imap functions
*) smtp auth support
*) pop3 starttls only
*) fix segfault if cram-md5 was used without apop
2007-03-19 13:36:56 +00:00
Igor Sysoev
684f955135
ngx_http_limit_zone_module must run after ngx_http_realip_module
2007-01-07 18:09:58 +00:00