nginx/auto/options

453 lines
16 KiB
Plaintext
Raw Normal View History

2003-11-26 04:44:56 +08:00
# Copyright (C) Igor Sysoev
2003-12-15 04:10:27 +08:00
help=no
2003-11-26 04:44:56 +08:00
NGX_PREFIX=
NGX_SBIN_PATH=
2007-07-30 02:05:45 +08:00
NGX_CONF_PREFIX=
NGX_CONF_PATH=
NGX_ERROR_LOG_PATH=
NGX_PID_PATH=
NGX_LOCK_PATH=
NGX_USER=
NGX_GROUP=
2004-05-19 04:28:54 +08:00
CC=${CC:-gcc}
2004-03-12 05:34:52 +08:00
CPP=
NGX_OBJS=objs
2003-11-26 04:44:56 +08:00
NGX_DEBUG=NO
NGX_CC_OPT=
NGX_LD_OPT=
2004-03-11 04:56:39 +08:00
CPU=NO
2007-09-19 20:14:05 +08:00
NGX_RPATH=NO
2004-03-11 01:55:19 +08:00
NGX_TEST_BUILD_DEVPOLL=NO
2006-09-26 20:20:12 +08:00
NGX_TEST_BUILD_EVENTPORT=NO
NGX_TEST_BUILD_EPOLL=NO
NGX_TEST_BUILD_RTSIG=NO
NGX_TEST_BUILD_SOLARIS_SENDFILEV=NO
2003-11-26 04:44:56 +08:00
NGX_PLATFORM=
NGX_WINE=
2004-02-03 05:19:52 +08:00
EVENT_FOUND=NO
2004-02-18 01:53:12 +08:00
EVENT_RTSIG=NO
2004-02-03 05:19:52 +08:00
EVENT_SELECT=NO
EVENT_POLL=NO
EVENT_AIO=NO
2004-01-23 17:26:18 +08:00
2004-02-24 04:57:12 +08:00
USE_THREADS=NO
2009-02-21 15:02:02 +08:00
NGX_IPV6=NO
HTTP=YES
NGX_HTTP_LOG_PATH=
NGX_HTTP_CLIENT_TEMP_PATH=
NGX_HTTP_PROXY_TEMP_PATH=
NGX_HTTP_FASTCGI_TEMP_PATH=
2009-03-23 21:14:51 +08:00
HTTP_CACHE=YES
2004-06-23 00:43:09 +08:00
HTTP_CHARSET=YES
2003-11-26 04:44:56 +08:00
HTTP_GZIP=YES
2004-07-08 23:17:47 +08:00
HTTP_SSL=NO
HTTP_SSI=YES
nginx-0.1.29-RELEASE import *) Feature: the ngx_http_ssi_module supports "include virtual" command. *) Feature: the ngx_http_ssi_module supports the condition command like 'if expr="$NAME"' and "else" and "endif" commands. Only one nested level is supported. *) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and DATE_GMT variables and "config timefmt" command. *) Feature: the "ssi_ignore_recycled_buffers" directive. *) Bugfix: the "echo" command did not show the default value for the empty QUERY_STRING variable. *) Change: the ngx_http_proxy_module was rewritten. *) Feature: the "proxy_redirect", "proxy_pass_request_headers", "proxy_pass_request_body", and "proxy_method" directives. *) Feature: the "proxy_set_header" directive. The "proxy_x_var" was canceled and must be replaced with the proxy_set_header directive. *) Change: the "proxy_preserve_host" is canceled and must be replaced with the "proxy_set_header Host $host" and the "proxy_redirect off" directives, the "proxy_set_header Host $host:$proxy_port" directive and the appropriate proxy_redirect directives. *) Change: the "proxy_set_x_real_ip" is canceled and must be replaced with the "proxy_set_header X-Real-IP $remote_addr" directive. *) Change: the "proxy_add_x_forwarded_for" is canceled and must be replaced with the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for" directive. *) Change: the "proxy_set_x_url" is canceled and must be replaced with the "proxy_set_header X-URL http://$host:$server_port$request_uri" directive. *) Feature: the "fastcgi_param" directive. *) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params" directive are canceled and must be replaced with the fastcgi_param directives. *) Feature: the "index" directive can use the variables. *) Feature: the "index" directive can be used at http and server levels. *) Change: the last index only in the "index" directive can be absolute. *) Feature: the "rewrite" directive can use the variables. *) Feature: the "internal" directive. *) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR, SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME, REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables. *) Change: nginx now passes the invalid lines in a client request headers or a backend response header. *) Bugfix: if the backend did not transfer response for a long time and the "send_timeout" was less than "proxy_read_timeout", then nginx returned the 408 response. *) Bugfix: the segmentation fault was occurred if the backend sent an invalid line in response header; the bug had appeared in 0.1.26. *) Bugfix: the segmentation fault may occurred in FastCGI fault tolerance configuration. *) Bugfix: the "expires" directive did not remove the previous "Expires" and "Cache-Control" headers. *) Bugfix: nginx did not take into account trailing dot in "Host" header line. *) Bugfix: the ngx_http_auth_module did not work under Linux. *) Bugfix: the rewrite directive worked incorrectly, if the arguments were in a request. *) Bugfix: nginx could not be built on MacOS X.
2005-05-12 22:58:06 +08:00
HTTP_POSTPONE=NO
nginx-0.3.8-RELEASE import *) Security: nginx now checks URI got from a backend in "X-Accel-Redirect" header line or in SSI file for the "/../" paths and zeroes. *) Change: nginx now does not treat the empty user name in the "Authorization" header line as valid one. *) Feature: the "ssl_session_timeout" directives of the ngx_http_ssl_module and ngx_imap_ssl_module. *) Feature: the "auth_http_header" directive of the ngx_imap_auth_http_module. *) Feature: the "add_header" directive. *) Feature: the ngx_http_realip_module. *) Feature: the new variables to use in the "log_format" directive: $bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri, $request_time, $request_length, $upstream_status, $upstream_response_time, $gzip_ratio, $uid_got, $uid_set, $connection, $pipe, and $msec. The parameters in the "%name" form will be canceled soon. *) Change: now the false variable values in the "if" directive are the empty string "" and string starting with "0". *) Bugfix: while using proxied or FastCGI-server nginx may leave connections and temporary files with client requests in open state. *) Bugfix: the worker processes did not flush the buffered logs on graceful exit. *) Bugfix: if the request URI was changes by the "rewrite" directive and the request was proxied in location given by regular expression, then the incorrect request was transferred to backend; the bug had appeared in 0.2.6. *) Bugfix: the "expires" directive did not remove the previous "Expires" header. *) Bugfix: nginx may stop to accept requests if the "rtsig" method and several worker processes were used. *) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in SSI commands. *) Bugfix: if the response was ended just after the SSI command and gzipping was used, then the response did not transferred complete or did not transferred at all.
2005-11-10 01:25:55 +08:00
HTTP_REALIP=NO
2008-08-04 22:48:15 +08:00
HTTP_XSLT=NO
2009-05-02 02:42:09 +08:00
HTTP_IMAGE_FILTER=NO
2007-04-20 01:54:23 +08:00
HTTP_SUB=NO
HTTP_ADDITION=NO
HTTP_DAV=NO
2004-06-25 00:07:04 +08:00
HTTP_ACCESS=YES
HTTP_AUTH_BASIC=YES
HTTP_USERID=YES
HTTP_AUTOINDEX=YES
2008-09-05 23:45:55 +08:00
HTTP_RANDOM_INDEX=NO
2004-09-28 00:03:21 +08:00
HTTP_STATUS=NO
HTTP_GEO=YES
2009-07-20 15:10:43 +08:00
HTTP_GEOIP=NO
HTTP_MAP=YES
HTTP_REFERER=YES
2004-06-24 15:53:37 +08:00
HTTP_REWRITE=YES
2003-11-26 04:44:56 +08:00
HTTP_PROXY=YES
HTTP_FASTCGI=YES
HTTP_PERL=NO
HTTP_MEMCACHED=YES
2007-01-07 02:52:46 +08:00
HTTP_LIMIT_ZONE=YES
2008-11-10 23:22:33 +08:00
HTTP_LIMIT_REQ=YES
HTTP_EMPTY_GIF=YES
2006-09-18 20:25:07 +08:00
HTTP_BROWSER=YES
2008-09-27 21:22:10 +08:00
HTTP_SECURE_LINK=NO
2006-10-09 22:17:36 +08:00
HTTP_FLV=NO
HTTP_GZIP_STATIC=NO
2006-12-05 00:46:13 +08:00
HTTP_UPSTREAM_IP_HASH=YES
2003-11-26 04:44:56 +08:00
# STUB
HTTP_STUB_STATUS=NO
MAIL=NO
MAIL_SSL=NO
MAIL_POP3=YES
MAIL_IMAP=YES
MAIL_SMTP=YES
NGX_ADDONS=
2004-02-10 04:47:18 +08:00
USE_PCRE=NO
2004-02-19 16:45:27 +08:00
PCRE=NONE
2004-03-12 05:34:52 +08:00
PCRE_OPT=
2003-11-26 04:44:56 +08:00
2004-07-26 02:34:14 +08:00
USE_OPENSSL=NO
OPENSSL=NONE
2004-02-03 05:19:52 +08:00
USE_MD5=NO
2004-02-09 15:46:43 +08:00
MD5=NONE
2004-03-12 05:34:52 +08:00
MD5_OPT=
2004-03-11 04:56:39 +08:00
MD5_ASM=NO
2003-11-26 04:44:56 +08:00
USE_SHA1=NO
SHA1=NONE
SHA1_OPT=
SHA1_ASM=NO
2004-02-03 05:19:52 +08:00
USE_ZLIB=NO
2004-02-09 15:46:43 +08:00
ZLIB=NONE
2004-03-12 05:34:52 +08:00
ZLIB_OPT=
2004-03-11 04:56:39 +08:00
ZLIB_ASM=NO
2003-11-26 04:44:56 +08:00
USE_PERL=NO
NGX_PERL=perl
2008-08-04 22:48:15 +08:00
USE_LIBXSLT=NO
2009-05-02 02:42:09 +08:00
USE_LIBGD=NO
2008-08-04 22:48:15 +08:00
2008-03-18 18:36:27 +08:00
NGX_GOOGLE_PERFTOOLS=NO
2008-08-06 03:32:50 +08:00
NGX_CPP_TEST=NO
2008-03-18 18:36:27 +08:00
NGX_CPU_CACHE_LINE=
opt=
2003-11-26 04:44:56 +08:00
for option
do
2009-05-19 00:50:32 +08:00
opt="$opt `echo $option | sed -e \"s/\(--[^=]*=\)\(.* .*\)/\1'\2'/\"`"
2003-11-26 04:44:56 +08:00
case "$option" in
-*=*) value=`echo "$option" | sed -e 's/[-_a-zA-Z0-9]*=//'` ;;
*) value="" ;;
esac
case "$option" in
2003-12-15 04:10:27 +08:00
--help) help=yes ;;
2003-11-26 04:44:56 +08:00
2009-04-27 19:32:33 +08:00
--prefix=) NGX_PREFIX="!" ;;
--prefix=*) NGX_PREFIX="$value" ;;
--sbin-path=*) NGX_SBIN_PATH="$value" ;;
--conf-path=*) NGX_CONF_PATH="$value" ;;
--error-log-path=*) NGX_ERROR_LOG_PATH="$value";;
--pid-path=*) NGX_PID_PATH="$value" ;;
--lock-path=*) NGX_LOCK_PATH="$value" ;;
--user=*) NGX_USER="$value" ;;
--group=*) NGX_GROUP="$value" ;;
2004-05-19 04:28:54 +08:00
--crossbuild=*) NGX_PLATFORM="$value" ;;
2003-11-26 04:44:56 +08:00
--builddir=*) NGX_OBJS="$value" ;;
2003-11-26 04:44:56 +08:00
2004-02-18 01:53:12 +08:00
--with-rtsig_module) EVENT_RTSIG=YES ;;
2004-02-03 05:19:52 +08:00
--with-select_module) EVENT_SELECT=YES ;;
2004-02-10 04:47:18 +08:00
--without-select_module) EVENT_SELECT=NONE ;;
2004-02-03 05:19:52 +08:00
--with-poll_module) EVENT_POLL=YES ;;
2004-02-10 04:47:18 +08:00
--without-poll_module) EVENT_POLL=NONE ;;
2004-02-03 05:19:52 +08:00
--with-aio_module) EVENT_AIO=YES ;;
2004-01-23 17:26:18 +08:00
#--with-threads=*) USE_THREADS="$value" ;;
#--with-threads) USE_THREADS="pthreads" ;;
2004-02-24 04:57:12 +08:00
2009-02-21 15:02:02 +08:00
--with-ipv6) NGX_IPV6=YES ;;
--without-http) HTTP=NO ;;
2009-03-23 21:14:51 +08:00
--without-http-cache) HTTP_CACHE=NO ;;
--http-log-path=*) NGX_HTTP_LOG_PATH="$value" ;;
--http-client-body-temp-path=*) NGX_HTTP_CLIENT_TEMP_PATH="$value" ;;
--http-proxy-temp-path=*) NGX_HTTP_PROXY_TEMP_PATH="$value" ;;
--http-fastcgi-temp-path=*) NGX_HTTP_FASTCGI_TEMP_PATH="$value" ;;
2004-07-08 23:17:47 +08:00
--with-http_ssl_module) HTTP_SSL=YES ;;
nginx-0.3.8-RELEASE import *) Security: nginx now checks URI got from a backend in "X-Accel-Redirect" header line or in SSI file for the "/../" paths and zeroes. *) Change: nginx now does not treat the empty user name in the "Authorization" header line as valid one. *) Feature: the "ssl_session_timeout" directives of the ngx_http_ssl_module and ngx_imap_ssl_module. *) Feature: the "auth_http_header" directive of the ngx_imap_auth_http_module. *) Feature: the "add_header" directive. *) Feature: the ngx_http_realip_module. *) Feature: the new variables to use in the "log_format" directive: $bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri, $request_time, $request_length, $upstream_status, $upstream_response_time, $gzip_ratio, $uid_got, $uid_set, $connection, $pipe, and $msec. The parameters in the "%name" form will be canceled soon. *) Change: now the false variable values in the "if" directive are the empty string "" and string starting with "0". *) Bugfix: while using proxied or FastCGI-server nginx may leave connections and temporary files with client requests in open state. *) Bugfix: the worker processes did not flush the buffered logs on graceful exit. *) Bugfix: if the request URI was changes by the "rewrite" directive and the request was proxied in location given by regular expression, then the incorrect request was transferred to backend; the bug had appeared in 0.2.6. *) Bugfix: the "expires" directive did not remove the previous "Expires" header. *) Bugfix: nginx may stop to accept requests if the "rtsig" method and several worker processes were used. *) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in SSI commands. *) Bugfix: if the response was ended just after the SSI command and gzipping was used, then the response did not transferred complete or did not transferred at all.
2005-11-10 01:25:55 +08:00
--with-http_realip_module) HTTP_REALIP=YES ;;
--with-http_addition_module) HTTP_ADDITION=YES ;;
2008-08-04 22:48:15 +08:00
--with-http_xslt_module) HTTP_XSLT=YES ;;
2009-05-02 02:42:09 +08:00
--with-http_image_filter_module) HTTP_IMAGE_FILTER=YES ;;
2009-07-20 15:10:43 +08:00
--with-http_geoip_module) HTTP_GEOIP=YES ;;
2007-04-20 01:54:23 +08:00
--with-http_sub_module) HTTP_SUB=YES ;;
--with-http_dav_module) HTTP_DAV=YES ;;
2006-10-09 22:17:36 +08:00
--with-http_flv_module) HTTP_FLV=YES ;;
--with-http_gzip_static_module) HTTP_GZIP_STATIC=YES ;;
2008-09-05 23:45:55 +08:00
--with-http_random_index_module) HTTP_RANDOM_INDEX=YES ;;
2008-09-27 21:22:10 +08:00
--with-http_secure_link_module) HTTP_SECURE_LINK=YES ;;
2004-06-23 00:43:09 +08:00
--without-http_charset_module) HTTP_CHARSET=NO ;;
2003-11-26 04:44:56 +08:00
--without-http_gzip_module) HTTP_GZIP=NO ;;
2004-07-08 23:17:47 +08:00
--without-http_ssi_module) HTTP_SSI=NO ;;
--without-http_userid_module) HTTP_USERID=NO ;;
--without-http_access_module) HTTP_ACCESS=NO ;;
--without-http_auth_basic_module) HTTP_AUTH_BASIC=NO ;;
--without-http_autoindex_module) HTTP_AUTOINDEX=NO ;;
2004-06-24 15:53:37 +08:00
--without-http_status_module) HTTP_STATUS=NO ;;
--without-http_geo_module) HTTP_GEO=NO ;;
--without-http_map_module) HTTP_MAP=NO ;;
--without-http_referer_module) HTTP_REFERER=NO ;;
2004-06-24 15:53:37 +08:00
--without-http_rewrite_module) HTTP_REWRITE=NO ;;
2003-11-26 04:44:56 +08:00
--without-http_proxy_module) HTTP_PROXY=NO ;;
--without-http_fastcgi_module) HTTP_FASTCGI=NO ;;
--without-http_memcached_module) HTTP_MEMCACHED=NO ;;
2007-01-07 02:52:46 +08:00
--without-http_limit_zone_module) HTTP_LIMIT_ZONE=NO ;;
2008-11-10 23:22:33 +08:00
--without-http_limit_req_module) HTTP_LIMIT_REQ=NO ;;
--without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;;
2006-09-18 20:25:07 +08:00
--without-http_browser_module) HTTP_BROWSER=NO ;;
2006-12-05 00:46:13 +08:00
--without-http_upstream_ip_hash_module) HTTP_UPSTREAM_IP_HASH=NO ;;
2003-11-26 04:44:56 +08:00
--with-http_perl_module) HTTP_PERL=YES ;;
--with-perl_modules_path=*) NGX_PERL_MODULES="$value" ;;
--with-perl=*) NGX_PERL="$value" ;;
# STUB
--with-http_stub_status_module) HTTP_STUB_STATUS=YES ;;
--with-mail) MAIL=YES ;;
--with-mail_ssl_module) MAIL_SSL=YES ;;
# STUB
--with-imap) MAIL=YES ;;
--with-imap_ssl_module) MAIL_SSL=YES ;;
--without-mail_pop3_module) MAIL_POP3=NO ;;
--without-mail_imap_module) MAIL_IMAP=NO ;;
--without-mail_smtp_module) MAIL_SMTP=NO ;;
2008-03-18 18:36:27 +08:00
--with-google_perftools_module) NGX_GOOGLE_PERFTOOLS=YES ;;
2008-08-13 16:29:27 +08:00
--with-cpp_test_module) NGX_CPP_TEST=YES ;;
2008-03-18 18:36:27 +08:00
--add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;;
2003-11-26 04:44:56 +08:00
--with-cc=*) CC="$value" ;;
2004-03-12 05:34:52 +08:00
--with-cpp=*) CPP="$value" ;;
--with-cc-opt=*) NGX_CC_OPT="$value" ;;
--with-ld-opt=*) NGX_LD_OPT="$value" ;;
2004-03-11 04:56:39 +08:00
--with-cpu-opt=*) CPU="$value" ;;
--with-debug) NGX_DEBUG=YES ;;
2003-11-26 04:44:56 +08:00
2004-02-20 00:48:14 +08:00
--without-pcre) USE_PCRE=DISABLED ;;
2009-03-20 00:06:32 +08:00
--with-pcre) USE_PCRE=YES ;;
2003-11-26 04:44:56 +08:00
--with-pcre=*) PCRE="$value" ;;
2004-03-11 04:56:39 +08:00
--with-pcre-opt=*) PCRE_OPT="$value" ;;
2004-07-26 02:34:14 +08:00
--with-openssl=*) OPENSSL="$value" ;;
--with-openssl-opt=*) OPENSSL_OPT="$value" ;;
2004-07-26 02:34:14 +08:00
2003-11-26 04:44:56 +08:00
--with-md5=*) MD5="$value" ;;
2004-03-11 04:56:39 +08:00
--with-md5-opt=*) MD5_OPT="$value" ;;
--with-md5-asm) MD5_ASM=YES ;;
--with-sha1=*) SHA1="$value" ;;
--with-sha1-opt=*) SHA1_OPT="$value" ;;
--with-sha1-asm) SHA1_ASM=YES ;;
2003-11-26 04:44:56 +08:00
--with-zlib=*) ZLIB="$value" ;;
2004-03-11 01:55:19 +08:00
--with-zlib-opt=*) ZLIB_OPT="$value" ;;
2004-03-11 04:56:39 +08:00
--with-zlib-asm=*) ZLIB_ASM="$value" ;;
2003-11-26 04:44:56 +08:00
--test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;;
2006-09-26 20:20:12 +08:00
--test-build-eventport) NGX_TEST_BUILD_EVENTPORT=YES ;;
--test-build-epoll) NGX_TEST_BUILD_EPOLL=YES ;;
--test-build-rtsig) NGX_TEST_BUILD_RTSIG=YES ;;
--test-build-solaris-sendfilev) NGX_TEST_BUILD_SOLARIS_SENDFILEV=YES ;;
2003-11-26 04:44:56 +08:00
*)
echo "$0: error: invalid option \"$option\""
exit 1
;;
esac
done
NGX_CONFIGURE="$opt"
2003-12-15 04:10:27 +08:00
if [ $help = yes ]; then
2004-01-23 17:26:18 +08:00
cat << END
--help this message
--prefix=PATH set the installation prefix
--sbin-path=PATH set path to the nginx binary file
--conf-path=PATH set path to the nginx.conf file
--error-log-path=PATH set path to the error log
--pid-path=PATH set path to nginx.pid file
--lock-path=PATH set path to nginx.lock file
--user=USER set non-privilege user
for the worker processes
--group=GROUP set non-privilege group
for the worker processes
--builddir=DIR set the build directory
--with-rtsig_module enable rtsig module
--with-select_module enable select module
--without-select_module disable select module
--with-poll_module enable poll module
--without-poll_module disable poll module
2009-02-21 15:02:02 +08:00
--with-ipv6 enable ipv6 support
--with-http_ssl_module enable ngx_http_ssl_module
--with-http_realip_module enable ngx_http_realip_module
--with-http_addition_module enable ngx_http_addition_module
2008-08-04 22:48:15 +08:00
--with-http_xslt_module enable ngx_http_xslt_module
--with-http_image_filter_module enable ngx_http_image_filter_module
2009-07-20 15:10:43 +08:00
--with-http_geoip_module enable ngx_http_geoip_link_module
2007-04-20 01:54:23 +08:00
--with-http_sub_module enable ngx_http_sub_module
--with-http_dav_module enable ngx_http_dav_module
2006-10-09 22:17:36 +08:00
--with-http_flv_module enable ngx_http_flv_module
--with-http_gzip_static_module enable ngx_http_gzip_static_module
2008-09-05 23:45:55 +08:00
--with-http_random_index_module enable ngx_http_random_index_module
2008-09-27 21:22:10 +08:00
--with-http_secure_link_module enable ngx_http_secure_link_module
2007-05-02 03:55:25 +08:00
--with-http_stub_status_module enable ngx_http_stub_status_module
--without-http_charset_module disable ngx_http_charset_module
--without-http_gzip_module disable ngx_http_gzip_module
--without-http_ssi_module disable ngx_http_ssi_module
--without-http_userid_module disable ngx_http_userid_module
--without-http_access_module disable ngx_http_access_module
--without-http_auth_basic_module disable ngx_http_auth_basic_module
--without-http_autoindex_module disable ngx_http_autoindex_module
--without-http_geo_module disable ngx_http_geo_module
--without-http_map_module disable ngx_http_map_module
--without-http_referer_module disable ngx_http_referer_module
--without-http_rewrite_module disable ngx_http_rewrite_module
--without-http_proxy_module disable ngx_http_proxy_module
--without-http_fastcgi_module disable ngx_http_fastcgi_module
--without-http_memcached_module disable ngx_http_memcached_module
2007-01-07 02:52:46 +08:00
--without-http_limit_zone_module disable ngx_http_limit_zone_module
2008-11-10 23:22:33 +08:00
--without-http_limit_req_module disable ngx_http_limit_req_module
--without-http_empty_gif_module disable ngx_http_empty_gif_module
--without-http_browser_module disable ngx_http_browser_module
2006-12-05 00:46:13 +08:00
--without-http_upstream_ip_hash_module
disable ngx_http_upstream_ip_hash_module
--with-http_perl_module enable ngx_http_perl_module
--with-perl_modules_path=PATH set path to the perl modules
--with-perl=PATH set path to the perl binary
--http-log-path=PATH set path to the http access log
--http-client-body-temp-path=PATH set path to the http client request body
temporary files
--http-proxy-temp-path=PATH set path to the http proxy temporary files
--http-fastcgi-temp-path=PATH set path to the http fastcgi temporary
files
--without-http disable HTTP server
2009-03-23 21:14:51 +08:00
--without-http-cache disable HTTP cache
2007-09-22 00:14:17 +08:00
--with-mail enable POP3/IMAP4/SMTP proxy module
--with-mail_ssl_module enable ngx_mail_ssl_module
2007-09-22 00:14:17 +08:00
--without-mail_pop3_module disable ngx_mail_pop3_module
--without-mail_imap_module disable ngx_mail_imap_module
--without-mail_smtp_module disable ngx_mail_smtp_module
2008-03-18 18:36:27 +08:00
--with-google_perftools_module enable ngx_google_perftools_module
2008-08-06 03:32:50 +08:00
--with-cpp_test_module enable ngx_cpp_test_module
2008-03-18 18:36:27 +08:00
2007-05-02 03:55:25 +08:00
--add-module=PATH enable an external module
--with-cc=PATH set path to C compiler
--with-cpp=PATH set path to C preprocessor
--with-cc-opt=OPTIONS set additional options for C compiler
--with-ld-opt=OPTIONS set additional options for linker
--with-cpu-opt=CPU build for specified CPU, the valid values:
pentium, pentiumpro, pentium3, pentium4,
athlon, opteron, sparc32, sparc64, ppc64
2009-03-20 00:02:40 +08:00
--without-pcre disable PCRE library usage
2009-03-20 00:06:32 +08:00
--with-pcre force PCRE library usage
--with-pcre=DIR set path to PCRE library sources
--with-pcre-opt=OPTIONS set additional options for PCRE building
--with-md5=DIR set path to md5 library sources
--with-md5-opt=OPTIONS set additional options for md5 building
--with-md5-asm use md5 assembler sources
--with-sha1=DIR set path to sha1 library sources
--with-sha1-opt=OPTIONS set additional options for sha1 building
--with-sha1-asm use sha1 assembler sources
--with-zlib=DIR set path to zlib library sources
--with-zlib-opt=OPTIONS set additional options for zlib building
--with-zlib-asm=CPU use zlib assembler sources optimized
for specified CPU, the valid values:
pentium, pentiumpro
--with-openssl=DIR set path to OpenSSL library sources
--with-openssl-opt=OPTIONS set additional options for OpenSSL building
--with-debug enable the debugging logging
2003-11-26 04:44:56 +08:00
END
2003-11-26 04:44:56 +08:00
exit 1
fi
2004-04-22 02:54:33 +08:00
if [ $HTTP = NO ]; then
HTTP_CHARSET=NO
HTTP_GZIP=NO
HTTP_SSI=NO
HTTP_USERID=NO
HTTP_ACCESS=NO
HTTP_STATUS=NO
HTTP_REWRITE=NO
HTTP_PROXY=NO
HTTP_FASTCGI=NO
fi
if [ ".$NGX_PLATFORM" = ".win32" ]; then
NGX_WINE=$WINE
2004-04-22 02:54:33 +08:00
fi
2004-05-19 04:28:54 +08:00
2009-04-27 19:32:33 +08:00
NGX_CONF_PATH=${NGX_CONF_PATH:-conf/nginx.conf}
NGX_CONF_PREFIX=`dirname $NGX_CONF_PATH`
2009-04-27 19:32:33 +08:00
NGX_PID_PATH=${NGX_PID_PATH:-logs/nginx.pid}
NGX_LOCK_PATH=${NGX_LOCK_PATH:-logs/nginx.lock}
2009-04-27 19:32:33 +08:00
if [ ".$NGX_ERROR_LOG_PATH" = ".stderr" ]; then
NGX_ERROR_LOG_PATH=
else
NGX_ERROR_LOG_PATH=${NGX_ERROR_LOG_PATH:-logs/error.log}
fi
2009-04-27 19:32:33 +08:00
NGX_HTTP_LOG_PATH=${NGX_HTTP_LOG_PATH:-logs/access.log}
NGX_HTTP_CLIENT_TEMP_PATH=${NGX_HTTP_CLIENT_TEMP_PATH:-client_body_temp}
NGX_HTTP_PROXY_TEMP_PATH=${NGX_HTTP_PROXY_TEMP_PATH:-proxy_temp}
NGX_HTTP_FASTCGI_TEMP_PATH=${NGX_HTTP_FASTCGI_TEMP_PATH:-fastcgi_temp}
case ".$NGX_PERL_MODULES" in
./*)
;;
.)
;;
*)
NGX_PERL_MODULES=$NGX_PREFIX/$NGX_PERL_MODULES
;;
esac