nginx/auto/summary

75 lines
2.0 KiB
Plaintext
Raw Normal View History

2003-12-14 14:10:27 -06:00
echo
echo "Configuration summary"
2004-05-18 15:28:54 -05:00
2004-02-20 10:48:59 -06:00
if [ $USE_PCRE = DISABLED ]; then
echo " + PCRE library is disabled"
else
case $PCRE in
YES) echo " + using system PCRE library" ;;
2004-03-09 13:47:07 -06:00
NONE) echo " + PCRE library is not used" ;;
2004-02-20 10:48:59 -06:00
NO) echo " + PCRE library is not found" ;;
*) echo " + using PCRE library: $PCRE" ;;
esac
fi
2003-12-19 02:15:11 -06:00
2003-12-14 14:10:27 -06:00
case $MD5 in
2004-02-20 10:48:59 -06:00
YES) echo " + md5: using system $MD5_LIB library" ;;
2004-02-09 01:46:43 -06:00
NONE) echo " + md5 library is not used" ;;
NO) echo " + md5 library is not found" ;;
*) echo " + using md5 library: $MD5" ;;
2003-12-14 14:10:27 -06:00
esac
2004-07-25 13:34:14 -05:00
case $OPENSSL in
YES) echo " + using system OpenSSL library" ;;
NONE) echo " + OpenSSL library is not used" ;;
NO) echo " + OpenSSL library is not found" ;;
*) echo " + using OpenSSL library: $OPENSSL" ;;
esac
2003-12-14 14:10:27 -06:00
case $ZLIB in
2004-02-09 01:46:43 -06:00
YES) echo " + using system zlib library" ;;
NONE) echo " + zlib library is not used" ;;
NO) echo " + zlib library is not found" ;;
*) echo " + using zlib library: $ZLIB" ;;
2003-12-14 14:10:27 -06:00
esac
echo
2004-02-09 14:47:18 -06:00
if [ $HTTP_REWRITE = YES ]; then
if [ $PCRE = NONE -o $PCRE = NO ]; then
echo "$0: error: HTTP rewrite module requires PCRE library."
echo $ngx_n "You can disable the module by using" $ngx_c
echo "--without-http_rewrite_module option"
echo "or you have to enable PCRE support"
echo
2004-03-11 09:42:41 -06:00
2004-02-09 14:47:18 -06:00
exit 1
fi
fi
if [ $HTTP_GZIP = YES ]; then
if [ $ZLIB = NONE -o $ZLIB = NO ]; then
echo "$0: error: HTTP gzip module requires zlib library."
echo $ngx_n "You can disable the module by using" $ngx_c
echo "--without-http_gzip_module option"
echo "or you have to enable zlib support"
echo
2004-03-11 09:42:41 -06:00
2004-02-09 14:47:18 -06:00
exit 1
fi
fi
2004-05-18 15:28:54 -05:00
echo " nginx path prefix: $PREFIX"
echo " nginx binary file: $SBIN_PATH"
echo " nginx configuration file: $CONF_PATH"
echo " nginx pid file: $PID_PATH"
echo " nginx error log file: $ERROR_LOG_PATH"
echo " nginx http access log file: $HTTP_LOG_PATH"
echo