comparison auto/summary @ 479:c52408583801 release-0.1.14

nginx-0.1.14-RELEASE import *) Feature: the autoconfiguration directives: --http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and --http-fastcgi-temp-path=PATH *) Change: the directory name for the temporary files with the client request body is specified by directive client_body_temp_path, by default it is <prefix>/client_body_temp. *) Feature: the ngx_http_fastcgi_module and the directives: fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params, fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout, fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers, fastcgi_busy_buffers_size, fastcgi_temp_path, fastcgi_max_temp_file_size, fastcgi_temp_file_write_size, fastcgi_next_upstream, and fastcgi_x_powered_by. *) Bugfix: the "[alert] zero size buf" error; the bug had appeared in 0.1.3. *) Change: the URI must be specified after the host name in the proxy_pass directive. *) Change: the %3F symbol in the URI was considered as the argument string start. *) Feature: the unix domain sockets support in the ngx_http_proxy_module. *) Feature: the ssl_engine and ssl_ciphers directives. Thanks to Sergey Skvortsov for SSL-accelerator.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 18 Jan 2005 13:03:58 +0000
parents ad1e9ebf93bb
children 975f62e77f02
comparison
equal deleted inserted replaced
478:e6576f690993 479:c52408583801
99 exit 1 99 exit 1
100 fi 100 fi
101 fi 101 fi
102 102
103 103
104 echo " nginx path prefix: $NGX_PREFIX" 104 if [ $HTTP_SSL = YES ]; then
105 echo " nginx binary file: $NGX_SBIN_PATH" 105 if [ $OPENSSL = NONE -o $OPENSSL = NO ]; then
106 echo " nginx configuration file: $NGX_CONF_PATH" 106
107 echo " nginx pid file: $NGX_PID_PATH" 107 cat << END
108 $0: error: the HTTP SSL module requires the OpenSSL library.
109 You can either do not enable the module, or install the OpenSSL library
110 into the system, or build the OpenSSL library statically from the source
111 with nginx by using --with-openssl=<path> option.
112
113 END
114
115 exit 1
116 fi
117 fi
118
119
120 cat << END
121 nginx path prefix: $NGX_PREFIX
122 nginx binary file: $NGX_SBIN_PATH
123 nginx configuration file: $NGX_CONF_PATH
124 nginx pid file: $NGX_PID_PATH
125 END
126
108 if test -n "$NGX_ERROR_LOG_PATH"; then 127 if test -n "$NGX_ERROR_LOG_PATH"; then
109 echo " nginx error log file: $NGX_ERROR_LOG_PATH" 128 echo " nginx error log file: $NGX_ERROR_LOG_PATH"
110 else 129 else
111 echo " nginx logs errors to stderr" 130 echo " nginx logs errors to stderr"
112 fi 131 fi
113 echo " nginx http access log file: $NGX_HTTP_LOG_PATH" 132
114 echo 133 cat << END
134 nginx http access log file: $NGX_HTTP_LOG_PATH
135 nginx http client request body temporary files: $NGX_HTTP_CLIENT_TEMP_PATH
136 nginx http proxy temporary files: $NGX_HTTP_PROXY_TEMP_PATH
137 nginx http fastcgi temporary files: $NGX_HTTP_FASTCGI_TEMP_PATH
138
139 END