comparison auto/options @ 50:72eb30262aac NGINX_0_1_25

nginx 0.1.25 *) Bugfix: nginx did run on Linux parisc. *) Feature: nginx now does not start under FreeBSD if the sysctl kern.ipc.somaxconn value is too big. *) Bugfix: if a request was internally redirected by the ngx_http_index_module module to the ngx_http_proxy_module or ngx_http_fastcgi_module modules, then the index file was not closed after request completion. *) Feature: the "proxy_pass" can be used in location with regular expression. *) Feature: the ngx_http_rewrite_filter_module module supports the condition like "if ($HTTP_USER_AGENT ~ MSIE)". *) Bugfix: nginx started too slow if the large number of addresses and text values were used in the "geo" directive. *) Change: a variable name must be declared as "$name" in the "geo" directive. The previous variant without "$" is still supported, but will be removed soon. *) Feature: the "%{VARIABLE}v" logging parameter. *) Feature: the "set $name value" directive. *) Bugfix: gcc 4.0 compatibility. *) Feature: the --with-openssl-opt=OPTIONS autoconfiguration directive.
author Igor Sysoev <http://sysoev.ru>
date Sat, 19 Mar 2005 00:00:00 +0300
parents 9f3205d496a0
children 0d75d65c642f
comparison
equal deleted inserted replaced
49:93dabbc9efb9 50:72eb30262aac
151 --without-pcre) USE_PCRE=DISABLED ;; 151 --without-pcre) USE_PCRE=DISABLED ;;
152 --with-pcre=*) PCRE="$value" ;; 152 --with-pcre=*) PCRE="$value" ;;
153 --with-pcre-opt=*) PCRE_OPT="$value" ;; 153 --with-pcre-opt=*) PCRE_OPT="$value" ;;
154 154
155 --with-openssl=*) OPENSSL="$value" ;; 155 --with-openssl=*) OPENSSL="$value" ;;
156 --with-openssl-opt=*) OPENSSL_OPT="$value" ;;
156 157
157 --with-md5=*) MD5="$value" ;; 158 --with-md5=*) MD5="$value" ;;
158 --with-md5-opt=*) MD5_OPT="$value" ;; 159 --with-md5-opt=*) MD5_OPT="$value" ;;
159 --with-md5-asm) MD5_ASM=YES ;; 160 --with-md5-asm) MD5_ASM=YES ;;
160 161
201 --without-poll_module disable poll module 202 --without-poll_module disable poll module
202 203
203 --with-http_ssl_module enable ngx_http_ssl_module 204 --with-http_ssl_module enable ngx_http_ssl_module
204 --without-http_charset_module disable ngx_http_charset_module 205 --without-http_charset_module disable ngx_http_charset_module
205 --without-http_gzip_module disable ngx_http_gzip_module 206 --without-http_gzip_module disable ngx_http_gzip_module
207 --without-http_ssi_module disable ngx_http_ssi_module
206 --without-http_userid_module disable ngx_http_userid_module 208 --without-http_userid_module disable ngx_http_userid_module
207 --without-http_access_module disable ngx_http_access_module 209 --without-http_access_module disable ngx_http_access_module
208 --without-http_autoindex_module disable ngx_http_autoindex_module 210 --without-http_autoindex_module disable ngx_http_autoindex_module
209 --without-http_geo_module disable ngx_http_geo_module 211 --without-http_geo_module disable ngx_http_geo_module
210 --without-http_rewrite_module disable ngx_http_rewrite_module 212 --without-http_rewrite_module disable ngx_http_rewrite_module
239 --with-zlib-asm=CPU use zlib assembler sources optimized 241 --with-zlib-asm=CPU use zlib assembler sources optimized
240 for specified CPU, the valid values: 242 for specified CPU, the valid values:
241 pentium, pentiumpro 243 pentium, pentiumpro
242 244
243 --with-openssl=DIR set path to OpenSSL library sources 245 --with-openssl=DIR set path to OpenSSL library sources
246 --with-openssl-opt=OPTIONS set additional options for OpenSSL building
244 247
245 --with-debug enable the debugging logging 248 --with-debug enable the debugging logging
246 249
247 END 250 END
248 251