comparison auto/options @ 326:f70f2f565fe0 NGINX_0_5_33

nginx 0.5.33 *) Change: now by default the "echo" SSI command uses entity encoding. *) Feature: the "encoding" parameter in the "echo" SSI command. *) Change: mail proxy was split on three modules: pop3, imap and smtp. *) Feature: the --without-mail_pop3_module, --without-mail_imap_module, and --without-mail_smtp_module configuration parameters. *) Feature: the "smtp_greeting_delay" and "smtp_client_buffer" directives of the ngx_mail_smtp_module. *) Feature: the "server_name" and "valid_referers" directives support regular expressions. *) Feature: the "server_name", "map", and "valid_referers" directives support the "www.example.*" wildcards. *) Bugfix: sub_filter did not work with empty substitution. *) Bugfix: in sub_filter parsing. *) Bugfix: a worker process may got caught in an endless loop, if the memcached was used. *) Bugfix: nginx supported low case only "close" and "keep-alive" values in the "Connection" request header line; bug appeared in 0.5.32. *) Bugfix: nginx could not start on Solaris if the shared PCRE library located in non-standard place was used.
author Igor Sysoev <http://sysoev.ru>
date Wed, 07 Nov 2007 00:00:00 +0300
parents cba14c1e2a4b
children
comparison
equal deleted inserted replaced
325:5bb1b28ddeaa 326:f70f2f565fe0
19 19
20 NGX_DEBUG=NO 20 NGX_DEBUG=NO
21 NGX_CC_OPT= 21 NGX_CC_OPT=
22 NGX_LD_OPT= 22 NGX_LD_OPT=
23 CPU=NO 23 CPU=NO
24
25 NGX_RPATH=NO
24 26
25 NGX_TEST_BUILD_DEVPOLL=NO 27 NGX_TEST_BUILD_DEVPOLL=NO
26 NGX_TEST_BUILD_EVENTPORT=NO 28 NGX_TEST_BUILD_EVENTPORT=NO
27 NGX_TEST_BUILD_EPOLL=NO 29 NGX_TEST_BUILD_EPOLL=NO
28 NGX_TEST_BUILD_RTSIG=NO 30 NGX_TEST_BUILD_RTSIG=NO
78 # STUB 80 # STUB
79 HTTP_STUB_STATUS=NO 81 HTTP_STUB_STATUS=NO
80 82
81 MAIL=NO 83 MAIL=NO
82 MAIL_SSL=NO 84 MAIL_SSL=NO
85 MAIL_POP3=YES
86 MAIL_IMAP=YES
87 MAIL_SMTP=YES
83 88
84 NGX_ADDONS= 89 NGX_ADDONS=
85 90
86 USE_PCRE=NO 91 USE_PCRE=NO
87 PCRE=NONE 92 PCRE=NONE
187 --with-mail) MAIL=YES ;; 192 --with-mail) MAIL=YES ;;
188 --with-mail_ssl_module) MAIL_SSL=YES ;; 193 --with-mail_ssl_module) MAIL_SSL=YES ;;
189 # STUB 194 # STUB
190 --with-imap) MAIL=YES ;; 195 --with-imap) MAIL=YES ;;
191 --with-imap_ssl_module) MAIL_SSL=YES ;; 196 --with-imap_ssl_module) MAIL_SSL=YES ;;
197 --without-mail_pop3_module) MAIL_POP3=NO ;;
198 --without-mail_imap_module) MAIL_IMAP=NO ;;
199 --without-mail_smtp_module) MAIL_SMTP=NO ;;
192 200
193 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;; 201 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;;
194 202
195 --with-cc=*) CC="$value" ;; 203 --with-cc=*) CC="$value" ;;
196 --with-cpp=*) CPP="$value" ;; 204 --with-cpp=*) CPP="$value" ;;
297 --http-fastcgi-temp-path=PATH set path to the http fastcgi temporary 305 --http-fastcgi-temp-path=PATH set path to the http fastcgi temporary
298 files 306 files
299 307
300 --without-http disable HTTP server 308 --without-http disable HTTP server
301 309
302 --with-mail enable IMAP4/POP3/SMTP proxy module 310 --with-mail enable POP3/IMAP4/SMTP proxy module
303 --with-mail_ssl_module enable ngx_mail_ssl_module 311 --with-mail_ssl_module enable ngx_mail_ssl_module
312 --without-mail_pop3_module disable ngx_mail_pop3_module
313 --without-mail_imap_module disable ngx_mail_imap_module
314 --without-mail_smtp_module disable ngx_mail_smtp_module
304 315
305 --add-module=PATH enable an external module 316 --add-module=PATH enable an external module
306 317
307 --with-cc=PATH set path to C compiler 318 --with-cc=PATH set path to C compiler
308 --with-cpp=PATH set path to C preprocessor 319 --with-cpp=PATH set path to C preprocessor