Fix work keepalive and rewrite to named location
[nginx-catap.git] / auto / summary
blob6449fd4c7fc8c1cd74948ebe214d0acc16bfef7e
2 # Copyright (C) Igor Sysoev
5 ### STUB
7 if [ $USE_THREADS != NO ]; then
9 cat << END
11 $0: error: the threads support is broken now.
13 END
14         exit 1
15     fi
17 ###
20 echo
21 echo "Configuration summary"
24 #case $USE_THREADS in
25 #    rfork)         echo "  + using rfork()ed threads" ;;
26 #    pthreads)      echo "  + using libpthread threads library" ;;
27 #    libthr)        echo "  + using FreeBSD libthr threads library" ;;
28 #    libc_r)        echo "  + using FreeBSD libc_r threads library" ;;
29 #    linuxthreads)  echo "  + using FreeBSD LinuxThreads port library" ;;
30 #    NO)            echo "  + threads are not used" ;;
31 #    *)             echo "  + using lib$USE_THREADS threads library" ;;
32 #esac
34 if [ $USE_PCRE = DISABLED ]; then
35     echo "  + PCRE library is disabled"
37 else
38     case $PCRE in
39         YES)   echo "  + using system PCRE library" ;;
40         NONE)  echo "  + PCRE library is not used" ;;
41         NO)    echo "  + PCRE library is not found" ;;
42         *)     echo "  + using PCRE library: $PCRE" ;;
43     esac
46 case $OPENSSL in
47     YES)   echo "  + using system OpenSSL library" ;;
48     NONE)  echo "  + OpenSSL library is not used" ;;
49     NO)    echo "  + OpenSSL library is not found" ;;
50     *)     echo "  + using OpenSSL library: $OPENSSL" ;;
51 esac
53 case $MD5 in
54     YES)   echo "  + md5: using $MD5_LIB library" ;;
55     NONE)  echo "  + md5 library is not used" ;;
56     NO)    echo "  + md5 library is not found" ;;
57     *)     echo "  + using md5 library: $MD5" ;;
58 esac
60 case $SHA1 in
61     YES)   echo "  + sha1: using $SHA1_LIB library" ;;
62     NONE)  echo "  + sha1 library is not used" ;;
63     NO)    echo "  + sha1 library is not found" ;;
64     *)     echo "  + using sha1 library: $SHA1" ;;
65 esac
67 case $ZLIB in
68     YES)   echo "  + using system zlib library" ;;
69     NONE)  echo "  + zlib library is not used" ;;
70     NO)    echo "  + zlib library is not found" ;;
71     *)     echo "  + using zlib library: $ZLIB" ;;
72 esac
74 case $NGX_LIBATOMIC in
75     YES)   echo "  + using system libatomic_ops library" ;;
76     NO)    ;; # not used
77     *)     echo "  + using libatomic_ops library: $NGX_LIBATOMIC" ;;
78 esac
80 echo
83 cat << END
84   nginx path prefix: "$NGX_PREFIX"
85   nginx binary file: "$NGX_SBIN_PATH"
86   nginx configuration prefix: "$NGX_CONF_PREFIX"
87   nginx configuration file: "$NGX_CONF_PATH"
88   nginx pid file: "$NGX_PID_PATH"
89 END
91 if test -n "$NGX_ERROR_LOG_PATH"; then
92     echo "  nginx error log file: \"$NGX_ERROR_LOG_PATH\""
93 else
94     echo "  nginx logs errors to stderr"
97 cat << END
98   nginx http access log file: "$NGX_HTTP_LOG_PATH"
99   nginx http client request body temporary files: "$NGX_HTTP_CLIENT_TEMP_PATH"
102 if [ $HTTP_PROXY = YES ]; then
103     echo "  nginx http proxy temporary files: \"$NGX_HTTP_PROXY_TEMP_PATH\""
106 if [ $HTTP_FASTCGI = YES ]; then
107     echo "  nginx http fastcgi temporary files: \"$NGX_HTTP_FASTCGI_TEMP_PATH\""
110 if [ $HTTP_UWSGI = YES ]; then
111     echo "  nginx http uwsgi temporary files: \"$NGX_HTTP_UWSGI_TEMP_PATH\""