comparison auto/options @ 464:c8cfb6c462ef NGINX_0_7_44

nginx 0.7.44 *) Feature: the ngx_http_proxy_module preliminary cache support. *) Feature: the --with-pcre option in the configure. *) Feature: the "try_files" directive is now allowed on the server block level. *) Bugfix: the "try_files" directive handled incorrectly a query string in a fallback parameter. *) Bugfix: the "try_files" directive might test incorrectly directories. *) Bugfix: if there is the single server for given address:port pair, then captures in regular expressions in a "server_name" directive did not work.
author Igor Sysoev <http://sysoev.ru>
date Mon, 23 Mar 2009 00:00:00 +0300
parents 76a79816b771
children 392c16f2d858
comparison
equal deleted inserted replaced
463:51cb914e6d3a 464:c8cfb6c462ef
50 NGX_HTTP_LOG_PATH= 50 NGX_HTTP_LOG_PATH=
51 NGX_HTTP_CLIENT_TEMP_PATH= 51 NGX_HTTP_CLIENT_TEMP_PATH=
52 NGX_HTTP_PROXY_TEMP_PATH= 52 NGX_HTTP_PROXY_TEMP_PATH=
53 NGX_HTTP_FASTCGI_TEMP_PATH= 53 NGX_HTTP_FASTCGI_TEMP_PATH=
54 54
55 HTTP_CACHE=YES
55 HTTP_CHARSET=YES 56 HTTP_CHARSET=YES
56 HTTP_GZIP=YES 57 HTTP_GZIP=YES
57 HTTP_SSL=NO 58 HTTP_SSL=NO
58 HTTP_SSI=YES 59 HTTP_SSI=YES
59 HTTP_POSTPONE=NO 60 HTTP_POSTPONE=NO
163 #--with-threads) USE_THREADS="pthreads" ;; 164 #--with-threads) USE_THREADS="pthreads" ;;
164 165
165 --with-ipv6) NGX_IPV6=YES ;; 166 --with-ipv6) NGX_IPV6=YES ;;
166 167
167 --without-http) HTTP=NO ;; 168 --without-http) HTTP=NO ;;
169 --without-http-cache) HTTP_CACHE=NO ;;
170
168 --http-log-path=*) NGX_HTTP_LOG_PATH="$value" ;; 171 --http-log-path=*) NGX_HTTP_LOG_PATH="$value" ;;
169 --http-client-body-temp-path=*) NGX_HTTP_CLIENT_TEMP_PATH="$value" ;; 172 --http-client-body-temp-path=*) NGX_HTTP_CLIENT_TEMP_PATH="$value" ;;
170 --http-proxy-temp-path=*) NGX_HTTP_PROXY_TEMP_PATH="$value" ;; 173 --http-proxy-temp-path=*) NGX_HTTP_PROXY_TEMP_PATH="$value" ;;
171 --http-fastcgi-temp-path=*) NGX_HTTP_FASTCGI_TEMP_PATH="$value" ;; 174 --http-fastcgi-temp-path=*) NGX_HTTP_FASTCGI_TEMP_PATH="$value" ;;
172 175
229 --with-ld-opt=*) NGX_LD_OPT="$value" ;; 232 --with-ld-opt=*) NGX_LD_OPT="$value" ;;
230 --with-cpu-opt=*) CPU="$value" ;; 233 --with-cpu-opt=*) CPU="$value" ;;
231 --with-debug) NGX_DEBUG=YES ;; 234 --with-debug) NGX_DEBUG=YES ;;
232 235
233 --without-pcre) USE_PCRE=DISABLED ;; 236 --without-pcre) USE_PCRE=DISABLED ;;
237 --with-pcre) USE_PCRE=YES ;;
234 --with-pcre=*) PCRE="$value" ;; 238 --with-pcre=*) PCRE="$value" ;;
235 --with-pcre-opt=*) PCRE_OPT="$value" ;; 239 --with-pcre-opt=*) PCRE_OPT="$value" ;;
236 240
237 --with-openssl=*) OPENSSL="$value" ;; 241 --with-openssl=*) OPENSSL="$value" ;;
238 --with-openssl-opt=*) OPENSSL_OPT="$value" ;; 242 --with-openssl-opt=*) OPENSSL_OPT="$value" ;;
334 --http-proxy-temp-path=PATH set path to the http proxy temporary files 338 --http-proxy-temp-path=PATH set path to the http proxy temporary files
335 --http-fastcgi-temp-path=PATH set path to the http fastcgi temporary 339 --http-fastcgi-temp-path=PATH set path to the http fastcgi temporary
336 files 340 files
337 341
338 --without-http disable HTTP server 342 --without-http disable HTTP server
343 --without-http-cache disable HTTP cache
339 344
340 --with-mail enable POP3/IMAP4/SMTP proxy module 345 --with-mail enable POP3/IMAP4/SMTP proxy module
341 --with-mail_ssl_module enable ngx_mail_ssl_module 346 --with-mail_ssl_module enable ngx_mail_ssl_module
342 --without-mail_pop3_module disable ngx_mail_pop3_module 347 --without-mail_pop3_module disable ngx_mail_pop3_module
343 --without-mail_imap_module disable ngx_mail_imap_module 348 --without-mail_imap_module disable ngx_mail_imap_module
354 --with-ld-opt=OPTIONS set additional options for linker 359 --with-ld-opt=OPTIONS set additional options for linker
355 --with-cpu-opt=CPU build for specified CPU, the valid values: 360 --with-cpu-opt=CPU build for specified CPU, the valid values:
356 pentium, pentiumpro, pentium3, pentium4, 361 pentium, pentiumpro, pentium3, pentium4,
357 athlon, opteron, sparc32, sparc64, ppc64 362 athlon, opteron, sparc32, sparc64, ppc64
358 363
359 --without-pcre disable PCRE libarary usage 364 --without-pcre disable PCRE library usage
365 --with-pcre force PCRE library usage
360 --with-pcre=DIR set path to PCRE library sources 366 --with-pcre=DIR set path to PCRE library sources
361 --with-pcre-opt=OPTIONS set additional options for PCRE building 367 --with-pcre-opt=OPTIONS set additional options for PCRE building
362 368
363 --with-md5=DIR set path to md5 library sources 369 --with-md5=DIR set path to md5 library sources
364 --with-md5-opt=OPTIONS set additional options for md5 building 370 --with-md5-opt=OPTIONS set additional options for md5 building