comparison auto/sources @ 28:7ca9bdc82b3f NGINX_0_1_14

nginx 0.1.14 *) 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; bug 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 <http://sysoev.ru>
date Tue, 18 Jan 2005 00:00:00 +0300
parents 45fe5b98a9de
children da8c190bdaba
comparison
equal deleted inserted replaced
27:66901c2556fd 28:7ca9bdc82b3f
108 108
109 109
110 UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix" 110 UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
111 111
112 UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \ 112 UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
113 src/core/ngx_unix_domain.h \
113 src/os/unix/ngx_time.h \ 114 src/os/unix/ngx_time.h \
114 src/os/unix/ngx_types.h \ 115 src/os/unix/ngx_types.h \
115 src/os/unix/ngx_errno.h \ 116 src/os/unix/ngx_errno.h \
116 src/os/unix/ngx_alloc.h \ 117 src/os/unix/ngx_alloc.h \
117 src/os/unix/ngx_files.h \ 118 src/os/unix/ngx_files.h \
123 src/os/unix/ngx_socket.h \ 124 src/os/unix/ngx_socket.h \
124 src/os/unix/ngx_os.h \ 125 src/os/unix/ngx_os.h \
125 src/os/unix/ngx_process_cycle.h" 126 src/os/unix/ngx_process_cycle.h"
126 127
127 UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \ 128 UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
129 src/core/ngx_unix_domain.c \
128 src/os/unix/ngx_time.c \ 130 src/os/unix/ngx_time.c \
129 src/os/unix/ngx_errno.c \ 131 src/os/unix/ngx_errno.c \
130 src/os/unix/ngx_alloc.c \ 132 src/os/unix/ngx_alloc.c \
131 src/os/unix/ngx_files.c \ 133 src/os/unix/ngx_files.c \
132 src/os/unix/ngx_socket.c \ 134 src/os/unix/ngx_socket.c \
201 203
202 NGX_WIN32_ICONS="src/os/win32/nginx.ico src/os/win32/tray.ico" 204 NGX_WIN32_ICONS="src/os/win32/nginx.ico src/os/win32/tray.ico"
203 NGX_WIN32_RC="src/os/win32/nginx.rc" 205 NGX_WIN32_RC="src/os/win32/nginx.rc"
204 206
205 207
208 # the http modules that have their logging formats
209 # must be after ngx_http_log_module
210
206 HTTP_MODULES="ngx_http_module \ 211 HTTP_MODULES="ngx_http_module \
207 ngx_http_core_module \ 212 ngx_http_core_module \
208 ngx_http_log_module" 213 ngx_http_log_module \
214 ngx_http_upstream_module"
209 215
210 HTTP_CACHE_MODULE=ngx_http_cache_module 216 HTTP_CACHE_MODULE=ngx_http_cache_module
211 217
212 HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module" 218 HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module"
213 HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module" 219 HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module"
229 HTTP_DEPS="src/http/ngx_http.h \ 235 HTTP_DEPS="src/http/ngx_http.h \
230 src/http/ngx_http_request.h \ 236 src/http/ngx_http_request.h \
231 src/http/ngx_http_config.h \ 237 src/http/ngx_http_config.h \
232 src/http/ngx_http_core_module.h \ 238 src/http/ngx_http_core_module.h \
233 src/http/ngx_http_cache.h \ 239 src/http/ngx_http_cache.h \
240 src/http/ngx_http_upstream.h \
234 src/http/ngx_http_busy_lock.h \ 241 src/http/ngx_http_busy_lock.h \
235 src/http/ngx_http_log_handler.h" 242 src/http/ngx_http_log_handler.h"
236 243
237 HTTP_SRCS="src/http/ngx_http.c \ 244 HTTP_SRCS="src/http/ngx_http.c \
238 src/http/ngx_http_core_module.c \ 245 src/http/ngx_http_core_module.c \
242 src/http/ngx_http_header_filter.c \ 249 src/http/ngx_http_header_filter.c \
243 src/http/ngx_http_write_filter.c \ 250 src/http/ngx_http_write_filter.c \
244 src/http/ngx_http_copy_filter.c \ 251 src/http/ngx_http_copy_filter.c \
245 src/http/ngx_http_log_handler.c \ 252 src/http/ngx_http_log_handler.c \
246 src/http/ngx_http_request_body.c \ 253 src/http/ngx_http_request_body.c \
254 src/http/ngx_http_upstream.c \
247 src/http/ngx_http_parse_time.c \ 255 src/http/ngx_http_parse_time.c \
248 src/http/modules/ngx_http_static_handler.c \ 256 src/http/modules/ngx_http_static_handler.c \
249 src/http/modules/ngx_http_index_handler.c \ 257 src/http/modules/ngx_http_index_handler.c \
250 src/http/modules/ngx_http_chunked_filter.c \ 258 src/http/modules/ngx_http_chunked_filter.c \
251 src/http/modules/ngx_http_range_filter.c \ 259 src/http/modules/ngx_http_range_filter.c \
306 314
307 # STUB 315 # STUB
308 # src/http/modules/proxy/ngx_http_proxy_cache.c \ 316 # src/http/modules/proxy/ngx_http_proxy_cache.c \
309 317
310 318
319 HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module
320 HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_handler.c
321
322
311 IMAP_INCS="src/imap" 323 IMAP_INCS="src/imap"
312 324
313 IMAP_DEPS="src/imap/ngx_imap.h" 325 IMAP_DEPS="src/imap/ngx_imap.h"
314 326
315 IMAP_MODULE=ngx_imap_module 327 IMAP_MODULE=ngx_imap_module