comparison auto/options @ 648:f200748c0ac8 NGINX_1_1_8

nginx 1.1.8 *) Change: the ngx_http_limit_zone_module was renamed to the ngx_http_limit_conn_module. *) Change: the "limit_zone" directive was superseded by the "limit_conn_zone" directive with a new syntax. *) Feature: support for multiple "limit_conn" limits on the same level. *) Feature: the "image_filter_sharpen" directive. *) Bugfix: a segmentation fault might occur in a worker process if resolver got a big DNS response. Thanks to Ben Hawkes. *) Bugfix: in cache key calculation if internal MD5 implementation was used; the bug had appeared in 1.0.4. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request header lines might be passed to backend while caching; or not passed without caching if caching was enabled in another part of the configuration. *) Bugfix: the module ngx_http_mp4_module sent incorrect "Content-Length" response header line if the "start" argument was used. Thanks to Piotr Sikora.
author Igor Sysoev <http://sysoev.ru>
date Mon, 14 Nov 2011 00:00:00 +0400
parents 615b5ea36fc0
children 9d21dad0b5a1
comparison
equal deleted inserted replaced
647:bec017127243 648:f200748c0ac8
83 HTTP_FASTCGI=YES 83 HTTP_FASTCGI=YES
84 HTTP_UWSGI=YES 84 HTTP_UWSGI=YES
85 HTTP_SCGI=YES 85 HTTP_SCGI=YES
86 HTTP_PERL=NO 86 HTTP_PERL=NO
87 HTTP_MEMCACHED=YES 87 HTTP_MEMCACHED=YES
88 HTTP_LIMIT_ZONE=YES 88 HTTP_LIMIT_CONN=YES
89 HTTP_LIMIT_REQ=YES 89 HTTP_LIMIT_REQ=YES
90 HTTP_EMPTY_GIF=YES 90 HTTP_EMPTY_GIF=YES
91 HTTP_BROWSER=YES 91 HTTP_BROWSER=YES
92 HTTP_SECURE_LINK=NO 92 HTTP_SECURE_LINK=NO
93 HTTP_DEGRADATION=NO 93 HTTP_DEGRADATION=NO
140 NGX_CPP_TEST=NO 140 NGX_CPP_TEST=NO
141 141
142 NGX_LIBATOMIC=NO 142 NGX_LIBATOMIC=NO
143 143
144 NGX_CPU_CACHE_LINE= 144 NGX_CPU_CACHE_LINE=
145
146 NGX_POST_CONF_MSG=
145 147
146 opt= 148 opt=
147 149
148 for option 150 for option
149 do 151 do
225 --without-http_proxy_module) HTTP_PROXY=NO ;; 227 --without-http_proxy_module) HTTP_PROXY=NO ;;
226 --without-http_fastcgi_module) HTTP_FASTCGI=NO ;; 228 --without-http_fastcgi_module) HTTP_FASTCGI=NO ;;
227 --without-http_uwsgi_module) HTTP_UWSGI=NO ;; 229 --without-http_uwsgi_module) HTTP_UWSGI=NO ;;
228 --without-http_scgi_module) HTTP_SCGI=NO ;; 230 --without-http_scgi_module) HTTP_SCGI=NO ;;
229 --without-http_memcached_module) HTTP_MEMCACHED=NO ;; 231 --without-http_memcached_module) HTTP_MEMCACHED=NO ;;
230 --without-http_limit_zone_module) HTTP_LIMIT_ZONE=NO ;; 232 --without-http_limit_zone_module)
233 HTTP_LIMIT_CONN=NO
234 NGX_POST_CONF_MSG="$NGX_POST_CONF_MSG
235 $0: warning: the \"--without-http_limit_zone_module\" option is deprecated, \
236 use the \"--without-http_limit_conn_module\" option instead"
237 ;;
238 --without-http_limit_conn_module) HTTP_LIMIT_CONN=NO ;;
231 --without-http_limit_req_module) HTTP_LIMIT_REQ=NO ;; 239 --without-http_limit_req_module) HTTP_LIMIT_REQ=NO ;;
232 --without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;; 240 --without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;;
233 --without-http_browser_module) HTTP_BROWSER=NO ;; 241 --without-http_browser_module) HTTP_BROWSER=NO ;;
234 --without-http_upstream_ip_hash_module) HTTP_UPSTREAM_IP_HASH=NO ;; 242 --without-http_upstream_ip_hash_module) HTTP_UPSTREAM_IP_HASH=NO ;;
235 --without-http_upstream_keepalive_module) HTTP_UPSTREAM_KEEPALIVE=NO ;; 243 --without-http_upstream_keepalive_module) HTTP_UPSTREAM_KEEPALIVE=NO ;;
362 --without-http_proxy_module disable ngx_http_proxy_module 370 --without-http_proxy_module disable ngx_http_proxy_module
363 --without-http_fastcgi_module disable ngx_http_fastcgi_module 371 --without-http_fastcgi_module disable ngx_http_fastcgi_module
364 --without-http_uwsgi_module disable ngx_http_uwsgi_module 372 --without-http_uwsgi_module disable ngx_http_uwsgi_module
365 --without-http_scgi_module disable ngx_http_scgi_module 373 --without-http_scgi_module disable ngx_http_scgi_module
366 --without-http_memcached_module disable ngx_http_memcached_module 374 --without-http_memcached_module disable ngx_http_memcached_module
367 --without-http_limit_zone_module disable ngx_http_limit_zone_module 375 --without-http_limit_conn_module disable ngx_http_limit_conn_module
368 --without-http_limit_req_module disable ngx_http_limit_req_module 376 --without-http_limit_req_module disable ngx_http_limit_req_module
369 --without-http_empty_gif_module disable ngx_http_empty_gif_module 377 --without-http_empty_gif_module disable ngx_http_empty_gif_module
370 --without-http_browser_module disable ngx_http_browser_module 378 --without-http_browser_module disable ngx_http_browser_module
371 --without-http_upstream_ip_hash_module 379 --without-http_upstream_ip_hash_module
372 disable ngx_http_upstream_ip_hash_module 380 disable ngx_http_upstream_ip_hash_module