comparison auto/options @ 593:4d3e880ce86c NGINX_0_8_42

nginx 0.8.42 *) Change: now nginx tests locations given by regular expressions, if request was matched exactly by a location given by a prefix string. The previous behavior has been introduced in 0.7.1. *) Feature: the ngx_http_scgi_module. Thanks to Manlio Perillo. *) Feature: a text answer may be added to a "return" directive.
author Igor Sysoev <http://sysoev.ru>
date Mon, 21 Jun 2010 00:00:00 +0400
parents 01f2313e34f1
children
comparison
equal deleted inserted replaced
592:c570633043e7 593:4d3e880ce86c
51 NGX_HTTP_LOG_PATH= 51 NGX_HTTP_LOG_PATH=
52 NGX_HTTP_CLIENT_TEMP_PATH= 52 NGX_HTTP_CLIENT_TEMP_PATH=
53 NGX_HTTP_PROXY_TEMP_PATH= 53 NGX_HTTP_PROXY_TEMP_PATH=
54 NGX_HTTP_FASTCGI_TEMP_PATH= 54 NGX_HTTP_FASTCGI_TEMP_PATH=
55 NGX_HTTP_UWSGI_TEMP_PATH= 55 NGX_HTTP_UWSGI_TEMP_PATH=
56 NGX_HTTP_SCGI_TEMP_PATH=
56 57
57 HTTP_CACHE=YES 58 HTTP_CACHE=YES
58 HTTP_CHARSET=YES 59 HTTP_CHARSET=YES
59 HTTP_GZIP=YES 60 HTTP_GZIP=YES
60 HTTP_SSL=NO 61 HTTP_SSL=NO
79 HTTP_REFERER=YES 80 HTTP_REFERER=YES
80 HTTP_REWRITE=YES 81 HTTP_REWRITE=YES
81 HTTP_PROXY=YES 82 HTTP_PROXY=YES
82 HTTP_FASTCGI=YES 83 HTTP_FASTCGI=YES
83 HTTP_UWSGI=YES 84 HTTP_UWSGI=YES
85 HTTP_SCGI=YES
84 HTTP_PERL=NO 86 HTTP_PERL=NO
85 HTTP_MEMCACHED=YES 87 HTTP_MEMCACHED=YES
86 HTTP_LIMIT_ZONE=YES 88 HTTP_LIMIT_ZONE=YES
87 HTTP_LIMIT_REQ=YES 89 HTTP_LIMIT_REQ=YES
88 HTTP_EMPTY_GIF=YES 90 HTTP_EMPTY_GIF=YES
186 --http-log-path=*) NGX_HTTP_LOG_PATH="$value" ;; 188 --http-log-path=*) NGX_HTTP_LOG_PATH="$value" ;;
187 --http-client-body-temp-path=*) NGX_HTTP_CLIENT_TEMP_PATH="$value" ;; 189 --http-client-body-temp-path=*) NGX_HTTP_CLIENT_TEMP_PATH="$value" ;;
188 --http-proxy-temp-path=*) NGX_HTTP_PROXY_TEMP_PATH="$value" ;; 190 --http-proxy-temp-path=*) NGX_HTTP_PROXY_TEMP_PATH="$value" ;;
189 --http-fastcgi-temp-path=*) NGX_HTTP_FASTCGI_TEMP_PATH="$value" ;; 191 --http-fastcgi-temp-path=*) NGX_HTTP_FASTCGI_TEMP_PATH="$value" ;;
190 --http-uwsgi-temp-path=*) NGX_HTTP_UWSGI_TEMP_PATH="$value" ;; 192 --http-uwsgi-temp-path=*) NGX_HTTP_UWSGI_TEMP_PATH="$value" ;;
193 --http-scgi-temp-path=*) NGX_HTTP_SCGI_TEMP_PATH="$value" ;;
191 194
192 --with-http_ssl_module) HTTP_SSL=YES ;; 195 --with-http_ssl_module) HTTP_SSL=YES ;;
193 --with-http_realip_module) HTTP_REALIP=YES ;; 196 --with-http_realip_module) HTTP_REALIP=YES ;;
194 --with-http_addition_module) HTTP_ADDITION=YES ;; 197 --with-http_addition_module) HTTP_ADDITION=YES ;;
195 --with-http_xslt_module) HTTP_XSLT=YES ;; 198 --with-http_xslt_module) HTTP_XSLT=YES ;;
217 --without-http_referer_module) HTTP_REFERER=NO ;; 220 --without-http_referer_module) HTTP_REFERER=NO ;;
218 --without-http_rewrite_module) HTTP_REWRITE=NO ;; 221 --without-http_rewrite_module) HTTP_REWRITE=NO ;;
219 --without-http_proxy_module) HTTP_PROXY=NO ;; 222 --without-http_proxy_module) HTTP_PROXY=NO ;;
220 --without-http_fastcgi_module) HTTP_FASTCGI=NO ;; 223 --without-http_fastcgi_module) HTTP_FASTCGI=NO ;;
221 --without-http_uwsgi_module) HTTP_UWSGI=NO ;; 224 --without-http_uwsgi_module) HTTP_UWSGI=NO ;;
225 --without-http_scgi_module) HTTP_SCGI=NO ;;
222 --without-http_memcached_module) HTTP_MEMCACHED=NO ;; 226 --without-http_memcached_module) HTTP_MEMCACHED=NO ;;
223 --without-http_limit_zone_module) HTTP_LIMIT_ZONE=NO ;; 227 --without-http_limit_zone_module) HTTP_LIMIT_ZONE=NO ;;
224 --without-http_limit_req_module) HTTP_LIMIT_REQ=NO ;; 228 --without-http_limit_req_module) HTTP_LIMIT_REQ=NO ;;
225 --without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;; 229 --without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;;
226 --without-http_browser_module) HTTP_BROWSER=NO ;; 230 --without-http_browser_module) HTTP_BROWSER=NO ;;
351 --without-http_referer_module disable ngx_http_referer_module 355 --without-http_referer_module disable ngx_http_referer_module
352 --without-http_rewrite_module disable ngx_http_rewrite_module 356 --without-http_rewrite_module disable ngx_http_rewrite_module
353 --without-http_proxy_module disable ngx_http_proxy_module 357 --without-http_proxy_module disable ngx_http_proxy_module
354 --without-http_fastcgi_module disable ngx_http_fastcgi_module 358 --without-http_fastcgi_module disable ngx_http_fastcgi_module
355 --without-http_uwsgi_module disable ngx_http_uwsgi_module 359 --without-http_uwsgi_module disable ngx_http_uwsgi_module
360 --without-http_scgi_module disable ngx_http_scgi_module
356 --without-http_memcached_module disable ngx_http_memcached_module 361 --without-http_memcached_module disable ngx_http_memcached_module
357 --without-http_limit_zone_module disable ngx_http_limit_zone_module 362 --without-http_limit_zone_module disable ngx_http_limit_zone_module
358 --without-http_limit_req_module disable ngx_http_limit_req_module 363 --without-http_limit_req_module disable ngx_http_limit_req_module
359 --without-http_empty_gif_module disable ngx_http_empty_gif_module 364 --without-http_empty_gif_module disable ngx_http_empty_gif_module
360 --without-http_browser_module disable ngx_http_browser_module 365 --without-http_browser_module disable ngx_http_browser_module
370 temporary files 375 temporary files
371 --http-proxy-temp-path=PATH set path to the http proxy temporary files 376 --http-proxy-temp-path=PATH set path to the http proxy temporary files
372 --http-fastcgi-temp-path=PATH set path to the http fastcgi temporary 377 --http-fastcgi-temp-path=PATH set path to the http fastcgi temporary
373 files 378 files
374 --http-uwsgi-temp-path=PATH set path to the http uwsgi temporary files 379 --http-uwsgi-temp-path=PATH set path to the http uwsgi temporary files
380 --http-scgi-temp-path=PATH set path to the http scgi temporary files
375 381
376 --without-http disable HTTP server 382 --without-http disable HTTP server
377 --without-http-cache disable HTTP cache 383 --without-http-cache disable HTTP cache
378 384
379 --with-mail enable POP3/IMAP4/SMTP proxy module 385 --with-mail enable POP3/IMAP4/SMTP proxy module
460 NGX_HTTP_LOG_PATH=${NGX_HTTP_LOG_PATH:-logs/access.log} 466 NGX_HTTP_LOG_PATH=${NGX_HTTP_LOG_PATH:-logs/access.log}
461 NGX_HTTP_CLIENT_TEMP_PATH=${NGX_HTTP_CLIENT_TEMP_PATH:-client_body_temp} 467 NGX_HTTP_CLIENT_TEMP_PATH=${NGX_HTTP_CLIENT_TEMP_PATH:-client_body_temp}
462 NGX_HTTP_PROXY_TEMP_PATH=${NGX_HTTP_PROXY_TEMP_PATH:-proxy_temp} 468 NGX_HTTP_PROXY_TEMP_PATH=${NGX_HTTP_PROXY_TEMP_PATH:-proxy_temp}
463 NGX_HTTP_FASTCGI_TEMP_PATH=${NGX_HTTP_FASTCGI_TEMP_PATH:-fastcgi_temp} 469 NGX_HTTP_FASTCGI_TEMP_PATH=${NGX_HTTP_FASTCGI_TEMP_PATH:-fastcgi_temp}
464 NGX_HTTP_UWSGI_TEMP_PATH=${NGX_HTTP_UWSGI_TEMP_PATH:-uwsgi_temp} 470 NGX_HTTP_UWSGI_TEMP_PATH=${NGX_HTTP_UWSGI_TEMP_PATH:-uwsgi_temp}
471 NGX_HTTP_SCGI_TEMP_PATH=${NGX_HTTP_SCGI_TEMP_PATH:-scgi_temp}
465 472
466 case ".$NGX_PERL_MODULES" in 473 case ".$NGX_PERL_MODULES" in
467 ./*) 474 ./*)
468 ;; 475 ;;
469 476