comparison auto/summary @ 496:f39b9e29530d NGINX_0_8_0

nginx 0.8.0 *) Feature: the "keepalive_requests" directive. *) Feature: the "limit_rate_after" directive. Thanks to Ivan Debnar. *) Bugfix: XLST filter did not work in subrequests. *) Bugfix: in relative paths handling in nginx/Windows. *) Bugfix: in proxy_store, fastcgi_store, proxy_cache, and fastcgi_cache in nginx/Windows. *) Bugfix: in memory allocation error handling. Thanks to Maxim Dounin and Kirill A. Korinskiy.
author Igor Sysoev <http://sysoev.ru>
date Tue, 02 Jun 2009 00:00:00 +0400
parents edf1cb6c328e
children 25255878df91
comparison
equal deleted inserted replaced
495:6d9fb4461113 496:f39b9e29530d
72 esac 72 esac
73 73
74 echo 74 echo
75 75
76 76
77 if [ $HTTP_REWRITE = YES ]; then
78 if [ $USE_PCRE = DISABLED ]; then
79
80 cat << END
81 $0: error: the HTTP rewrite module requires the PCRE library.
82 You can either disable the module by using --without-http_rewrite_module
83 option or you have to enable the PCRE support.
84
85 END
86 exit 1
87 fi
88
89 if [ $PCRE = NONE -o $PCRE = NO ]; then
90
91 cat << END
92 $0: error: the HTTP rewrite module requires the PCRE library.
93 You can either disable the module by using --without-http_rewrite_module
94 option, or install the PCRE library into the system, or build the PCRE library
95 statically from the source with nginx by using --with-pcre=<path> option.
96
97 END
98
99 exit 1
100 fi
101 fi
102
103
104 if [ $HTTP_GZIP = YES ]; then
105 if [ $ZLIB = NONE -o $ZLIB = NO ]; then
106
107 cat << END
108 $0: error: the HTTP gzip module requires the zlib library.
109 You can either disable the module by using --without-http_gzip_module
110 option, or install the zlib library into the system, or build the zlib library
111 statically from the source with nginx by using --with-zlib=<path> option.
112
113 END
114
115 exit 1
116 fi
117 fi
118
119
120 if [ $HTTP_SSL = YES ]; then
121 if [ $OPENSSL = NONE -o $OPENSSL = NO ]; then
122
123 cat << END
124 $0: error: the HTTP SSL module requires the OpenSSL library.
125 You can either do not enable the module, or install the OpenSSL library
126 into the system, or build the OpenSSL library statically from the source
127 with nginx by using --with-openssl=<path> option.
128
129 END
130
131 exit 1
132 fi
133 fi
134
135
136 cat << END 77 cat << END
137 nginx path prefix: "$NGX_PREFIX" 78 nginx path prefix: "$NGX_PREFIX"
138 nginx binary file: "$NGX_SBIN_PATH" 79 nginx binary file: "$NGX_SBIN_PATH"
139 nginx configuration prefix: "$NGX_CONF_PREFIX" 80 nginx configuration prefix: "$NGX_CONF_PREFIX"
140 nginx configuration file: "$NGX_CONF_PATH" 81 nginx configuration file: "$NGX_CONF_PATH"