comparison auto/modules @ 392:34fb3a573548 NGINX_0_7_8

nginx 0.7.8 *) Feature: the ngx_http_xslt_module. *) Feature: the "$arg_..." variables. *) Feature: Solaris directio support. Thanks to Ivan Debnar. *) Bugfix: now if FastCGI server sends a "Location" header line without status line, then nginx uses 302 status code. Thanks to Maxim Dounin.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Aug 2008 00:00:00 +0400
parents 9a242235a80a
children 05981f639d21
comparison
equal deleted inserted replaced
391:4ec606a899d3 392:34fb3a573548
74 HTTP_POSTPONE=YES 74 HTTP_POSTPONE=YES
75 fi 75 fi
76 76
77 77
78 # the module order is important 78 # the module order is important
79 # ngx_http_static_module
80 # ngx_http_gzip_static_module
81 # ngx_http_dav_module
79 # ngx_http_autoindex_module 82 # ngx_http_autoindex_module
80 # ngx_http_index_module 83 # ngx_http_index_module
81 # 84 #
82 # ngx_http_access_module 85 # ngx_http_access_module
83 # ngx_http_realip_module 86 # ngx_http_realip_module
90 # ngx_http_range_header_filter 93 # ngx_http_range_header_filter
91 # ngx_http_gzip_filter 94 # ngx_http_gzip_filter
92 # ngx_http_postpone_filter 95 # ngx_http_postpone_filter
93 # ngx_http_charset_filter 96 # ngx_http_charset_filter
94 # ngx_http_ssi_filter 97 # ngx_http_ssi_filter
98 # ngx_http_xslt_filter
99 # ngx_http_sub_filter
95 # ngx_http_addition_filter 100 # ngx_http_addition_filter
96 # ngx_http_userid_filter 101 # ngx_http_userid_filter
97 # ngx_http_headers_filter 102 # ngx_http_headers_filter
98 # ngx_http_copy_filter 103 # ngx_http_copy_filter
99 # ngx_http_range_body_filter 104 # ngx_http_range_body_filter
125 if [ $HTTP_SSI = YES ]; then 130 if [ $HTTP_SSI = YES ]; then
126 have=NGX_HTTP_SSI . auto/have 131 have=NGX_HTTP_SSI . auto/have
127 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SSI_FILTER_MODULE" 132 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SSI_FILTER_MODULE"
128 HTTP_DEPS="$HTTP_DEPS $HTTP_SSI_DEPS" 133 HTTP_DEPS="$HTTP_DEPS $HTTP_SSI_DEPS"
129 HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS" 134 HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS"
135 fi
136
137 if [ $HTTP_XSLT = YES ]; then
138 USE_LIBXSLT=YES
139 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_XSLT_FILTER_MODULE"
140 HTTP_SRCS="$HTTP_SRCS $HTTP_XSLT_SRCS"
130 fi 141 fi
131 142
132 if [ $HTTP_SUB = YES ]; then 143 if [ $HTTP_SUB = YES ]; then
133 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SUB_FILTER_MODULE" 144 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SUB_FILTER_MODULE"
134 HTTP_SRCS="$HTTP_SRCS $HTTP_SUB_SRCS" 145 HTTP_SRCS="$HTTP_SRCS $HTTP_SUB_SRCS"