comparison auto/modules @ 640:eb208e0cf44d NGINX_1_1_4

nginx 1.1.4 *) Feature: the ngx_http_upstream_keepalive module. *) Feature: the "proxy_http_version" directive. *) Feature: the "fastcgi_keep_conn" directive. *) Feature: the "worker_aio_requests" directive. *) Bugfix: if nginx was built --with-file-aio it could not be run on Linux kernel which did not support AIO. *) Bugfix: in Linux AIO error processing. Thanks to Hagai Avrahami. *) Bugfix: reduced memory consumption for long-lived requests. *) Bugfix: the module ngx_http_mp4_module did not support 64-bit MP4 "co64" atom.
author Igor Sysoev <http://sysoev.ru>
date Tue, 20 Sep 2011 00:00:00 +0400
parents f5a8cf31a203
children f200748c0ac8
comparison
equal deleted inserted replaced
639:b516b4e38bc9 640:eb208e0cf44d
342 if [ $HTTP_UPSTREAM_IP_HASH = YES ]; then 342 if [ $HTTP_UPSTREAM_IP_HASH = YES ]; then
343 HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_IP_HASH_MODULE" 343 HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_IP_HASH_MODULE"
344 HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_IP_HASH_SRCS" 344 HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_IP_HASH_SRCS"
345 fi 345 fi
346 346
347 if [ $HTTP_UPSTREAM_KEEPALIVE = YES ]; then
348 HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_KEEPALIVE_MODULE"
349 HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_KEEPALIVE_SRCS"
350 fi
351
347 if [ $HTTP_STUB_STATUS = YES ]; then 352 if [ $HTTP_STUB_STATUS = YES ]; then
348 have=NGX_STAT_STUB . auto/have 353 have=NGX_STAT_STUB . auto/have
349 HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module" 354 HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module"
350 HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c" 355 HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c"
351 fi 356 fi