comparison auto/modules @ 464:c8cfb6c462ef NGINX_0_7_44

nginx 0.7.44 *) Feature: the ngx_http_proxy_module preliminary cache support. *) Feature: the --with-pcre option in the configure. *) Feature: the "try_files" directive is now allowed on the server block level. *) Bugfix: the "try_files" directive handled incorrectly a query string in a fallback parameter. *) Bugfix: the "try_files" directive might test incorrectly directories. *) Bugfix: if there is the single server for given address:port pair, then captures in regular expressions in a "server_name" directive did not work.
author Igor Sysoev <http://sysoev.ru>
date Mon, 23 Mar 2009 00:00:00 +0300
parents b4f69f2ef02c
children ed5e10fb40fc
comparison
equal deleted inserted replaced
463:51cb914e6d3a 464:c8cfb6c462ef
60 60
61 61
62 if [ $HTTP != YES ]; then 62 if [ $HTTP != YES ]; then
63 have=NGX_CRYPT . auto/nohave 63 have=NGX_CRYPT . auto/nohave
64 CRYPT_LIB= 64 CRYPT_LIB=
65 fi
66
67
68 if [ $HTTP_CACHE = YES ]; then
69 USE_MD5=YES
70 have=NGX_HTTP_CACHE . auto/have
71 HTTP_SRCS="$HTTP_SRCS $HTTP_FILE_CACHE_SRCS"
65 fi 72 fi
66 73
67 74
68 if [ $HTTP_SSI = YES ]; then 75 if [ $HTTP_SSI = YES ]; then
69 HTTP_POSTPONE=YES 76 HTTP_POSTPONE=YES
303 if [ $HTTP_UPSTREAM_IP_HASH = YES ]; then 310 if [ $HTTP_UPSTREAM_IP_HASH = YES ]; then
304 HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_IP_HASH_MODULE" 311 HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_IP_HASH_MODULE"
305 HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_IP_HASH_SRCS" 312 HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_IP_HASH_SRCS"
306 fi 313 fi
307 314
308 # STUB
309 #USE_MD5=YES
310 #HTTP_SRCS="$HTTP_SRCS $HTTP_CACHE_SRCS"
311 #HTTP_SRCS="$HTTP_SRCS $HTTP_FILE_CACHE_SRCS"
312
313 if [ $HTTP_STUB_STATUS = YES ]; then 315 if [ $HTTP_STUB_STATUS = YES ]; then
314 have=NGX_STAT_STUB . auto/have 316 have=NGX_STAT_STUB . auto/have
315 HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module" 317 HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module"
316 HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c" 318 HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c"
317 fi 319 fi