comparison auto/modules @ 541:b09ee85d0ac8 release-0.1.45

nginx-0.1.45-RELEASE import *) Change: the "ssl_engine" directive was canceled in the ngx_http_ssl_module and now is introduced at global level. *) Bugfix: the responses with SSI subrequests did not transferred via SSL connection. *) Various bug fixes in the IMAP/POP3 proxy.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 08 Sep 2005 14:36:09 +0000
parents 371c1cee100d
children 58475592100c
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
59 59
60 if [ $HTTP_SSI = YES ]; then 60 if [ $HTTP_SSI = YES ]; then
61 HTTP_POSTPONE=YES 61 HTTP_POSTPONE=YES
62 fi 62 fi
63 63
64 # the module order is important
65 # ngx_http_autoindex_module
66 # ngx_http_index_module
67 #
68 #
64 # the filter order is important 69 # the filter order is important
65 # ngx_http_write_filter 70 # ngx_http_write_filter
66 # ngx_http_header_filter 71 # ngx_http_header_filter
67 # ngx_http_chunked_filter 72 # ngx_http_chunked_filter
68 # ngx_http_range_header_filter 73 # ngx_http_range_header_filter
69 # ngx_http_ssl_filter
70 # ngx_http_gzip_filter 74 # ngx_http_gzip_filter
71 # ngx_http_postpone_filter 75 # ngx_http_postpone_filter
72 # ngx_http_charset_filter 76 # ngx_http_charset_filter
73 # ngx_http_ssi_filter 77 # ngx_http_ssi_filter
74 # ngx_http_headers_filter 78 # ngx_http_userid_filter
79 # ngx_http_headers_filter
75 # ngx_http_copy_filter 80 # ngx_http_copy_filter
76 # ngx_http_range_body_filter 81 # ngx_http_range_body_filter
77 # ngx_http_not_modified_filter 82 # ngx_http_not_modified_filter
78 83
79 HTTP_FILTER_MODULES="$HTTP_WRITE_FILTER_MODULE \ 84 HTTP_FILTER_MODULES="$HTTP_WRITE_FILTER_MODULE \
210 fi 215 fi
211 done 216 done
212 fi 217 fi
213 218
214 219
220 if [ $IMAP_SSL = YES ]; then
221 IMAP_DEPS="$IMAP_DEPS $IMAP_SSL_DEPS"
222 IMAP_SRCS="$IMAP_SRCS $IMAP_SSL_SRCS"
223 have=NGX_IMAP_SSL . auto/have
224 USE_OPENSSL=YES
225 fi
226
227
215 modules="$CORE_MODULES $EVENT_MODULES" 228 modules="$CORE_MODULES $EVENT_MODULES"
229
230
231 if [ $USE_OPENSSL = YES ]; then
232 modules="$modules $OPENSSL_MODULE"
233 CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS"
234 CORE_SRCS="$CORE_SRCS $OPENSSL_SRCS"
235 fi
216 236
217 if [ $HTTP = YES ]; then 237 if [ $HTTP = YES ]; then
218 modules="$modules $HTTP_MODULES $HTTP_FILTER_MODULES \ 238 modules="$modules $HTTP_MODULES $HTTP_FILTER_MODULES \
219 $HTTP_HEADERS_FILTER_MODULE \ 239 $HTTP_HEADERS_FILTER_MODULE \
220 $HTTP_COPY_FILTER_MODULE \ 240 $HTTP_COPY_FILTER_MODULE \
228 if [ $IMAP = YES ]; then 248 if [ $IMAP = YES ]; then
229 modules="$modules $IMAP_MODULES" 249 modules="$modules $IMAP_MODULES"
230 250
231 if [ $IMAP_SSL = YES ]; then 251 if [ $IMAP_SSL = YES ]; then
232 modules="$modules $IMAP_SSL_MODULE" 252 modules="$modules $IMAP_SSL_MODULE"
233 IMAP_DEPS="$IMAP_DEPS $IMAP_SSL_DEPS"
234 IMAP_SRCS="$IMAP_SRCS $IMAP_SSL_SRCS"
235 have=NGX_IMAP_SSL . auto/have
236 USE_OPENSSL=YES
237 fi 253 fi
238 254
239 modules="$modules $IMAP_AUTH_HTTP_MODULE" 255 modules="$modules $IMAP_AUTH_HTTP_MODULE"
240 IMAP_SRCS="$IMAP_SRCS $IMAP_AUTH_HTTP_SRCS" 256 IMAP_SRCS="$IMAP_SRCS $IMAP_AUTH_HTTP_SRCS"
241 257