comparison auto/modules @ 406:79c5df00501e NGINX_0_7_15

nginx 0.7.15 *) Feature: the ngx_http_random_index_module. *) Feature: the "directio" directive has been optimized for file requests starting from arbitrary position. *) Feature: the "directio" directive turns off sendfile if it is necessary. *) Feature: now nginx allows underscores in a client request header line names.
author Igor Sysoev <http://sysoev.ru>
date Mon, 08 Sep 2008 00:00:00 +0400
parents 349057ecf4d5
children b246022ef454
comparison
equal deleted inserted replaced
405:2993e60bc4e0 406:79c5df00501e
79 # ngx_http_static_module 79 # ngx_http_static_module
80 # ngx_http_gzip_static_module 80 # ngx_http_gzip_static_module
81 # ngx_http_dav_module 81 # ngx_http_dav_module
82 # ngx_http_autoindex_module 82 # ngx_http_autoindex_module
83 # ngx_http_index_module 83 # ngx_http_index_module
84 # ngx_http_random_index_module
84 # 85 #
85 # ngx_http_access_module 86 # ngx_http_access_module
86 # ngx_http_realip_module 87 # ngx_http_realip_module
87 # 88 #
88 # 89 #
175 HTTP_SRCS="$HTTP_SRCS $HTTP_AUTOINDEX_SRCS" 176 HTTP_SRCS="$HTTP_SRCS $HTTP_AUTOINDEX_SRCS"
176 fi 177 fi
177 178
178 HTTP_MODULES="$HTTP_MODULES $HTTP_INDEX_MODULE" 179 HTTP_MODULES="$HTTP_MODULES $HTTP_INDEX_MODULE"
179 180
181 if [ $HTTP_RANDOM_INDEX = YES ]; then
182 have=NGX_HTTP_RANDOM_INDEX . auto/have
183 HTTP_MODULES="$HTTP_MODULES $HTTP_RANDOM_INDEX_MODULE"
184 HTTP_SRCS="$HTTP_SRCS $HTTP_RANDOM_INDEX_SRCS"
185 fi
186
180 if [ $HTTP_AUTH_BASIC = YES ]; then 187 if [ $HTTP_AUTH_BASIC = YES ]; then
181 have=NGX_HTTP_AUTH_BASIC . auto/have 188 have=NGX_HTTP_AUTH_BASIC . auto/have
182 have=NGX_CRYPT . auto/have 189 have=NGX_CRYPT . auto/have
183 HTTP_MODULES="$HTTP_MODULES $HTTP_AUTH_BASIC_MODULE" 190 HTTP_MODULES="$HTTP_MODULES $HTTP_AUTH_BASIC_MODULE"
184 HTTP_SRCS="$HTTP_SRCS $HTTP_AUTH_BASIC_SRCS" 191 HTTP_SRCS="$HTTP_SRCS $HTTP_AUTH_BASIC_SRCS"