nginx/auto/options

292 lines
7.0 KiB
Plaintext
Raw Normal View History

2003-11-25 14:44:56 -06:00
# Copyright (C) Igor Sysoev
2003-12-14 14:10:27 -06:00
help=no
2003-11-25 14:44:56 -06:00
NGX_PREFIX=
NGX_SBIN_PATH=
NGX_CONF_PATH=
NGX_ERROR_LOG_PATH=
NGX_PID_PATH=
NGX_USER=
NGX_GROUP=
NGX_HTTP_LOG_PATH=
2004-05-18 15:28:54 -05:00
CC=${CC:-gcc}
2004-03-11 15:34:52 -06:00
CPP=
NGX_OBJS=objs
2003-11-25 14:44:56 -06:00
NGX_DEBUG=NO
NGX_CC_OPT=
NGX_LD_OPT=
2004-03-10 14:56:39 -06:00
CPU=NO
2004-03-10 11:55:19 -06:00
NGX_TEST_BUILD_DEVPOLL=NO
NGX_TEST_BUILD_EPOLL=NO
NGX_TEST_BUILD_RTSIG=NO
2003-11-25 14:44:56 -06:00
NGX_PLATFORM=
NGX_WINE=
2004-02-02 15:19:52 -06:00
EVENT_FOUND=NO
2004-02-17 11:53:12 -06:00
EVENT_RTSIG=NO
2004-02-02 15:19:52 -06:00
EVENT_SELECT=NO
EVENT_POLL=NO
EVENT_AIO=NO
2004-01-23 03:26:18 -06:00
2004-02-23 14:57:12 -06:00
USE_THREADS=NO
HTTP=YES
2004-06-22 11:43:09 -05:00
HTTP_CHARSET=YES
2003-11-25 14:44:56 -06:00
HTTP_GZIP=YES
2004-07-08 10:17:47 -05:00
HTTP_SSL=NO
2004-09-27 11:03:21 -05:00
HTTP_SSI=NO
2004-06-24 11:07:04 -05:00
HTTP_ACCESS=YES
HTTP_USERID=YES
HTTP_AUTOINDEX=YES
2004-09-27 11:03:21 -05:00
HTTP_STATUS=NO
2004-06-24 02:53:37 -05:00
HTTP_REWRITE=YES
2003-11-25 14:44:56 -06:00
HTTP_PROXY=YES
IMAP=NO
NGX_MODULES=
2004-02-09 14:47:18 -06:00
USE_PCRE=NO
2004-02-19 02:45:27 -06:00
PCRE=NONE
2004-03-11 15:34:52 -06:00
PCRE_OPT=
2003-11-25 14:44:56 -06:00
2004-07-25 13:34:14 -05:00
USE_OPENSSL=NO
OPENSSL=NONE
2004-02-02 15:19:52 -06:00
USE_MD5=NO
2004-02-09 01:46:43 -06:00
MD5=NONE
2004-03-11 15:34:52 -06:00
MD5_OPT=
2004-03-10 14:56:39 -06:00
MD5_ASM=NO
2003-11-25 14:44:56 -06:00
2004-02-02 15:19:52 -06:00
USE_ZLIB=NO
2004-02-09 01:46:43 -06:00
ZLIB=NONE
2004-03-11 15:34:52 -06:00
ZLIB_OPT=
2004-03-10 14:56:39 -06:00
ZLIB_ASM=NO
2003-11-25 14:44:56 -06:00
for option
do
case "$option" in
-*=*) value=`echo "$option" | sed -e 's/[-_a-zA-Z0-9]*=//'` ;;
*) value="" ;;
esac
case "$option" in
2003-12-14 14:10:27 -06:00
--help) help=yes ;;
2003-11-25 14:44:56 -06:00
--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" ;;
--user=*) NGX_USER="$value" ;;
--group=*) NGX_GROUP="$value" ;;
2004-05-18 15:28:54 -05:00
--crossbuild=*) NGX_PLATFORM="$value" ;;
2003-11-25 14:44:56 -06:00
--builddir=*) NGX_OBJS="$value" ;;
2003-11-25 14:44:56 -06:00
2004-02-17 11:53:12 -06:00
--with-rtsig_module) EVENT_RTSIG=YES ;;
2004-02-02 15:19:52 -06:00
--with-select_module) EVENT_SELECT=YES ;;
2004-02-09 14:47:18 -06:00
--without-select_module) EVENT_SELECT=NONE ;;
2004-02-02 15:19:52 -06:00
--with-poll_module) EVENT_POLL=YES ;;
2004-02-09 14:47:18 -06:00
--without-poll_module) EVENT_POLL=NONE ;;
2004-02-02 15:19:52 -06:00
--with-aio_module) EVENT_AIO=YES ;;
2004-01-23 03:26:18 -06:00
2004-02-23 14:57:12 -06:00
--with-threads=*) USE_THREADS="$value" ;;
--with-threads) USE_THREADS="pthreads" ;;
--without-http) HTTP=NO ;;
--http-log-path=*) NGX_HTTP_LOG_PATH="$value" ;;
2004-07-08 10:17:47 -05:00
--with-http_ssl_module) HTTP_SSL=YES ;;
2004-06-22 11:43:09 -05:00
--without-http_charset_module) HTTP_CHARSET=NO ;;
2003-11-25 14:44:56 -06:00
--without-http_gzip_module) HTTP_GZIP=NO ;;
2004-07-08 10:17:47 -05:00
--without-http_ssi_module) HTTP_SSI=NO ;;
--without-http_userid_module) HTTP_USERID=NO ;;
--without-http_access_module) HTTP_ACCESS=NO ;;
--without-http_autoindex_module) HTTP_AUTOINDEX=NO ;;
2004-06-24 02:53:37 -05:00
--without-http_status_module) HTTP_STATUS=NO ;;
--without-http_rewrite_module) HTTP_REWRITE=NO ;;
2003-11-25 14:44:56 -06:00
--without-http_proxy_module) HTTP_PROXY=NO ;;
--with-imap) IMAP=YES ;;
--with-module=*) NGX_MODULES="$NGX_MODULES $values" ;;
2003-11-25 14:44:56 -06:00
--with-cc=*) CC="$value" ;;
2004-03-11 15:34:52 -06:00
--with-cpp=*) CPP="$value" ;;
--with-cc-opt=*) NGX_CC_OPT="$value" ;;
--with-ld-opt=*) NGX_LD_OPT="$value" ;;
2004-03-10 14:56:39 -06:00
--with-cpu-opt=*) CPU="$value" ;;
--with-debug) NGX_DEBUG=YES ;;
2003-11-25 14:44:56 -06:00
2004-02-19 10:48:14 -06:00
--without-pcre) USE_PCRE=DISABLED ;;
2003-11-25 14:44:56 -06:00
--with-pcre=*) PCRE="$value" ;;
2004-03-10 14:56:39 -06:00
--with-pcre-opt=*) PCRE_OPT="$value" ;;
2004-07-25 13:34:14 -05:00
--with-openssl=*) OPENSSL="$value" ;;
2003-11-25 14:44:56 -06:00
--with-md5=*) MD5="$value" ;;
2004-03-10 14:56:39 -06:00
--with-md5-opt=*) MD5_OPT="$value" ;;
--with-md5-asm) MD5_ASM=YES ;;
2003-11-25 14:44:56 -06:00
--with-zlib=*) ZLIB="$value" ;;
2004-03-10 11:55:19 -06:00
--with-zlib-opt=*) ZLIB_OPT="$value" ;;
2004-03-10 14:56:39 -06:00
--with-zlib-asm=*) ZLIB_ASM="$value" ;;
2003-11-25 14:44:56 -06:00
--test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;;
--test-build-epoll) NGX_TEST_BUILD_EPOLL=YES ;;
--test-build-rtsig) NGX_TEST_BUILD_RTSIG=YES ;;
2003-11-25 14:44:56 -06:00
*)
echo "$0: error: invalid option \"$option\""
exit 1
;;
esac
done
2003-12-14 14:10:27 -06:00
if [ $help = yes ]; then
2004-01-23 03:26:18 -06:00
cat << END
--help this message
--user=USER set non-privilege user
for the worker processes
--group=GROUP set non-privilege group
for the worker processes
--with-select_module enable select module
--without-select_module disable select module
--with-poll_module enable poll module
--without-poll_module disable poll module
--without-http_charset_module disable ngx_http_charset_module
--without-http_rewrite_module disable ngx_http_rewrite_module
--without-http_gzip_module disable ngx_http_gzip_module
--without-http_proxy_module disable ngx_http_proxy_module
2003-11-25 14:44:56 -06:00
--with-cc-opt=OPTIONS additional options for compiler
--with-ld-opt=OPTIONS additional options for linker
2003-11-25 14:44:56 -06:00
--with-pcre=DIR path to PCRE library
--with-md5=DIR path to md5 library
--with-zlib=DIR path to zlib library
--with-openssl=DIR path to OpenSSL library
2003-11-25 14:44:56 -06:00
END
2003-11-25 14:44:56 -06:00
exit 1
fi
2004-04-21 13:54:33 -05: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
fi
if [ ".$NGX_PLATFORM" = ".win32" ]; then
NGX_WINE=$WINE
2004-04-21 13:54:33 -05:00
fi
2004-05-18 15:28:54 -05:00
if test -z "$NGX_PREFIX"; then
NGX_PREFIX=/usr/local/nginx
2004-05-18 15:28:54 -05:00
fi
if test -z "$NGX_GROUP"; then
NGX_GROUP=NGX_USER
fi
case ".$NGX_SBIN_PATH" in
2004-09-27 11:03:21 -05:00
./*)
;;
2004-05-18 15:28:54 -05:00
2004-09-27 11:03:21 -05:00
.)
NGX_SBIN_PATH=$NGX_PREFIX/sbin/nginx
2004-09-27 11:03:21 -05:00
;;
2004-05-18 15:28:54 -05:00
2004-09-27 11:03:21 -05:00
*)
NGX_SBIN_PATH=$NGX_PREFIX/$NGX_SBIN_PATH
2004-09-27 11:03:21 -05:00
;;
esac
2004-05-18 15:28:54 -05:00
2004-09-27 11:03:21 -05:00
case ".$NGX_CONF_PATH" in
2004-09-27 11:03:21 -05:00
./*)
;;
.)
NGX_CONF_PATH=$NGX_PREFIX/conf/nginx.conf
2004-09-27 11:03:21 -05:00
;;
*)
NGX_CONF_PATH=$NGX_PREFIX/$NGX_CONF_PATH
2004-09-27 11:03:21 -05:00
;;
esac
case ".$NGX_PID_PATH" in
2004-09-27 11:03:21 -05:00
./*)
;;
.)
NGX_PID_PATH=$NGX_PREFIX/logs/nginx.pid
2004-09-27 11:03:21 -05:00
;;
*)
NGX_PID_PATH=$NGX_PREFIX/$NGX_PID_PATH
2004-09-27 11:03:21 -05:00
;;
esac
case ".$NGX_ERROR_LOG_PATH" in
2004-09-27 11:03:21 -05:00
./*)
;;
.)
NGX_ERROR_LOG_PATH=$NGX_PREFIX/logs/error.log
2004-09-27 11:03:21 -05:00
;;
.stderr)
NGX_ERROR_LOG_PATH=
;;
2004-09-27 11:03:21 -05:00
*)
NGX_ERROR_LOG_PATH=$NGX_PREFIX/$NGX_ERROR_LOG_PATH
2004-09-27 11:03:21 -05:00
;;
esac
case ".$NGX_HTTP_LOG_PATH" in
2004-09-27 11:03:21 -05:00
./*)
;;
.)
NGX_HTTP_LOG_PATH=$NGX_PREFIX/logs/access.log
2004-09-27 11:03:21 -05:00
;;
*)
NGX_HTTP_LOG_PATH=$NGX_PREFIX/$NGX_HTTP_LOG_PATH
2004-09-27 11:03:21 -05:00
;;
esac