2003-11-26 04:44:56 +08:00
|
|
|
|
2004-09-30 00:00:49 +08:00
|
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
|
|
|
2004-05-18 23:29:08 +08:00
|
|
|
CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-03-30 01:43:58 +08:00
|
|
|
CORE_INCS="src/core"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
CORE_DEPS="src/core/nginx.h \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/core/ngx_config.h \
|
|
|
|
src/core/ngx_core.h \
|
|
|
|
src/core/ngx_log.h \
|
|
|
|
src/core/ngx_palloc.h \
|
|
|
|
src/core/ngx_array.h \
|
|
|
|
src/core/ngx_list.h \
|
2005-04-08 23:18:55 +08:00
|
|
|
src/core/ngx_hash.h \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/core/ngx_buf.h \
|
|
|
|
src/core/ngx_string.h \
|
|
|
|
src/core/ngx_parse.h \
|
|
|
|
src/core/ngx_inet.h \
|
|
|
|
src/core/ngx_file.h \
|
|
|
|
src/core/ngx_crc.h \
|
|
|
|
src/core/ngx_rbtree.h \
|
2005-02-04 03:33:37 +08:00
|
|
|
src/core/ngx_radix_tree.h \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/core/ngx_times.h \
|
|
|
|
src/core/ngx_connection.h \
|
|
|
|
src/core/ngx_cycle.h \
|
|
|
|
src/core/ngx_conf_file.h \
|
|
|
|
src/core/ngx_garbage_collector.h"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-09-29 04:09:22 +08:00
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
CORE_SRCS="src/core/nginx.c \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/core/ngx_log.c \
|
|
|
|
src/core/ngx_palloc.c \
|
|
|
|
src/core/ngx_array.c \
|
|
|
|
src/core/ngx_list.c \
|
2005-04-08 23:18:55 +08:00
|
|
|
src/core/ngx_hash.c \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/core/ngx_buf.c \
|
|
|
|
src/core/ngx_output_chain.c \
|
|
|
|
src/core/ngx_string.c \
|
|
|
|
src/core/ngx_parse.c \
|
|
|
|
src/core/ngx_inet.c \
|
|
|
|
src/core/ngx_file.c \
|
|
|
|
src/core/ngx_rbtree.c \
|
2005-02-04 03:33:37 +08:00
|
|
|
src/core/ngx_radix_tree.c \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/core/ngx_times.c \
|
|
|
|
src/core/ngx_connection.c \
|
|
|
|
src/core/ngx_cycle.c \
|
|
|
|
src/core/ngx_spinlock.c \
|
|
|
|
src/core/ngx_conf_file.c \
|
|
|
|
src/core/ngx_garbage_collector.c"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
REGEX_DEPS=src/core/ngx_regex.h
|
|
|
|
REGEX_SRCS=src/core/ngx_regex.c
|
2003-12-19 16:15:11 +08:00
|
|
|
|
|
|
|
|
2005-09-08 22:36:09 +08:00
|
|
|
OPENSSL_MODULE=ngx_openssl_module
|
|
|
|
OPENSSL_DEPS=src/event/ngx_event_openssl.h
|
|
|
|
OPENSSL_SRCS=src/event/ngx_event_openssl.c
|
|
|
|
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
EVENT_MODULES="ngx_events_module ngx_event_core_module"
|
|
|
|
|
2004-03-30 01:43:58 +08:00
|
|
|
EVENT_INCS="src/event src/event/modules"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
EVENT_DEPS="src/event/ngx_event.h \
|
|
|
|
src/event/ngx_event_timer.h \
|
2004-04-05 04:32:09 +08:00
|
|
|
src/event/ngx_event_posted.h \
|
2004-03-03 05:14:37 +08:00
|
|
|
src/event/ngx_event_busy_lock.h \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/event/ngx_event_connect.h \
|
|
|
|
src/event/ngx_event_pipe.h"
|
|
|
|
|
|
|
|
EVENT_SRCS="src/event/ngx_event.c \
|
|
|
|
src/event/ngx_event_timer.c \
|
2004-04-05 04:32:09 +08:00
|
|
|
src/event/ngx_event_posted.c \
|
2004-03-03 05:14:37 +08:00
|
|
|
src/event/ngx_event_busy_lock.c \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/event/ngx_event_accept.c \
|
|
|
|
src/event/ngx_event_connect.c \
|
|
|
|
src/event/ngx_event_pipe.c"
|
|
|
|
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
SELECT_MODULE=ngx_select_module
|
2003-11-26 04:44:56 +08:00
|
|
|
SELECT_SRCS=src/event/modules/ngx_select_module.c
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
POLL_MODULE=ngx_poll_module
|
2003-11-26 04:44:56 +08:00
|
|
|
POLL_SRCS=src/event/modules/ngx_poll_module.c
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
KQUEUE_MODULE=ngx_kqueue_module
|
2003-11-26 04:44:56 +08:00
|
|
|
KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
DEVPOLL_MODULE=ngx_devpoll_module
|
2003-11-26 04:44:56 +08:00
|
|
|
DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c
|
2004-01-30 05:45:01 +08:00
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
EPOLL_MODULE=ngx_epoll_module
|
2004-01-30 05:45:01 +08:00
|
|
|
EPOLL_SRCS=src/event/modules/ngx_epoll_module.c
|
2004-01-31 01:39:00 +08:00
|
|
|
|
2004-02-18 01:53:12 +08:00
|
|
|
RTSIG_MODULE=ngx_rtsig_module
|
|
|
|
RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
IOCP_MODULE=ngx_iocp_module
|
2003-11-26 04:44:56 +08:00
|
|
|
IOCP_SRCS=src/event/modules/ngx_iocp_module.c
|
|
|
|
|
2004-02-03 05:19:52 +08:00
|
|
|
AIO_MODULE=ngx_aio_module
|
|
|
|
AIO_SRCS="src/event/modules/ngx_aio_module.c \
|
|
|
|
src/os/unix/ngx_aio_read.c \
|
|
|
|
src/os/unix/ngx_aio_write.c \
|
|
|
|
src/os/unix/ngx_aio_read_chain.c \
|
|
|
|
src/os/unix/ngx_aio_write_chain.c"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
|
2004-03-30 01:43:58 +08:00
|
|
|
UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
|
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.
2005-01-18 21:03:58 +08:00
|
|
|
src/core/ngx_unix_domain.h \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/unix/ngx_time.h \
|
|
|
|
src/os/unix/ngx_types.h \
|
|
|
|
src/os/unix/ngx_errno.h \
|
2004-06-07 03:49:18 +08:00
|
|
|
src/os/unix/ngx_alloc.h \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/unix/ngx_files.h \
|
2004-06-23 23:18:17 +08:00
|
|
|
src/os/unix/ngx_channel.h \
|
2004-06-18 01:18:53 +08:00
|
|
|
src/os/unix/ngx_shared.h \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/unix/ngx_process.h \
|
nginx-0.1.29-RELEASE import
*) Feature: the ngx_http_ssi_module supports "include virtual" command.
*) Feature: the ngx_http_ssi_module supports the condition command like
'if expr="$NAME"' and "else" and "endif" commands. Only one nested
level is supported.
*) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and
DATE_GMT variables and "config timefmt" command.
*) Feature: the "ssi_ignore_recycled_buffers" directive.
*) Bugfix: the "echo" command did not show the default value for the
empty QUERY_STRING variable.
*) Change: the ngx_http_proxy_module was rewritten.
*) Feature: the "proxy_redirect", "proxy_pass_request_headers",
"proxy_pass_request_body", and "proxy_method" directives.
*) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
canceled and must be replaced with the proxy_set_header directive.
*) Change: the "proxy_preserve_host" is canceled and must be replaced
with the "proxy_set_header Host $host" and the "proxy_redirect off"
directives, the "proxy_set_header Host $host:$proxy_port" directive
and the appropriate proxy_redirect directives.
*) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
with the "proxy_set_header X-Real-IP $remote_addr" directive.
*) Change: the "proxy_add_x_forwarded_for" is canceled and must be
replaced with
the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
directive.
*) Change: the "proxy_set_x_url" is canceled and must be replaced with
the "proxy_set_header X-URL http://$host:$server_port$request_uri"
directive.
*) Feature: the "fastcgi_param" directive.
*) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
directive are canceled and must be replaced with the fastcgi_param
directives.
*) Feature: the "index" directive can use the variables.
*) Feature: the "index" directive can be used at http and server levels.
*) Change: the last index only in the "index" directive can be absolute.
*) Feature: the "rewrite" directive can use the variables.
*) Feature: the "internal" directive.
*) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
*) Change: nginx now passes the invalid lines in a client request
headers or a backend response header.
*) Bugfix: if the backend did not transfer response for a long time and
the "send_timeout" was less than "proxy_read_timeout", then nginx
returned the 408 response.
*) Bugfix: the segmentation fault was occurred if the backend sent an
invalid line in response header; the bug had appeared in 0.1.26.
*) Bugfix: the segmentation fault may occurred in FastCGI fault
tolerance configuration.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" and "Cache-Control" headers.
*) Bugfix: nginx did not take into account trailing dot in "Host"
header line.
*) Bugfix: the ngx_http_auth_module did not work under Linux.
*) Bugfix: the rewrite directive worked incorrectly, if the arguments
were in a request.
*) Bugfix: nginx could not be built on MacOS X.
2005-05-12 22:58:06 +08:00
|
|
|
src/os/unix/ngx_setproctitle.h \
|
2004-06-30 23:30:41 +08:00
|
|
|
src/os/unix/ngx_atomic.h \
|
2004-02-24 04:57:12 +08:00
|
|
|
src/os/unix/ngx_thread.h \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/unix/ngx_socket.h \
|
2004-03-04 15:04:55 +08:00
|
|
|
src/os/unix/ngx_os.h \
|
2005-03-23 00:02:46 +08:00
|
|
|
src/os/unix/ngx_user.h \
|
2004-03-04 15:04:55 +08:00
|
|
|
src/os/unix/ngx_process_cycle.h"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
|
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.
2005-01-18 21:03:58 +08:00
|
|
|
src/core/ngx_unix_domain.c \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/unix/ngx_time.c \
|
2003-12-15 04:10:27 +08:00
|
|
|
src/os/unix/ngx_errno.c \
|
2004-06-07 03:49:18 +08:00
|
|
|
src/os/unix/ngx_alloc.c \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/unix/ngx_files.c \
|
|
|
|
src/os/unix/ngx_socket.c \
|
|
|
|
src/os/unix/ngx_recv.c \
|
|
|
|
src/os/unix/ngx_readv_chain.c \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/os/unix/ngx_send.c \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/unix/ngx_writev_chain.c \
|
2004-06-23 23:18:17 +08:00
|
|
|
src/os/unix/ngx_channel.c \
|
2004-06-18 01:18:53 +08:00
|
|
|
src/os/unix/ngx_shared.c \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/unix/ngx_process.c \
|
2004-06-18 01:18:53 +08:00
|
|
|
src/os/unix/ngx_daemon.c \
|
2004-10-11 23:07:03 +08:00
|
|
|
src/os/unix/ngx_setproctitle.c \
|
2004-03-04 15:04:55 +08:00
|
|
|
src/os/unix/ngx_posix_init.c \
|
2005-03-23 00:02:46 +08:00
|
|
|
src/os/unix/ngx_user.c \
|
2004-03-04 15:04:55 +08:00
|
|
|
src/os/unix/ngx_process_cycle.c"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-06-16 01:47:16 +08:00
|
|
|
POSIX_DEPS=src/os/unix/ngx_posix_config.h
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h
|
|
|
|
FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
|
|
|
|
FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
|
2004-07-05 14:55:54 +08:00
|
|
|
FREEBSD_RFORK_DEPS="src/os/unix/ngx_freebsd_rfork_thread.h"
|
2004-02-24 04:57:12 +08:00
|
|
|
FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c"
|
2004-02-25 01:31:46 +08:00
|
|
|
FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-07-05 14:55:54 +08:00
|
|
|
PTHREAD_SRCS="src/os/unix/ngx_pthread_thread.c"
|
|
|
|
|
2003-11-26 23:42:18 +08:00
|
|
|
LINUX_DEPS=src/os/unix/ngx_linux_config.h
|
|
|
|
LINUX_SRCS=src/os/unix/ngx_linux_init.c
|
|
|
|
LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
|
|
|
|
|
|
|
|
|
|
|
|
SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h
|
|
|
|
SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c
|
2003-11-27 15:45:22 +08:00
|
|
|
SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
|
2003-11-26 23:42:18 +08:00
|
|
|
|
|
|
|
|
2004-03-30 01:43:58 +08:00
|
|
|
WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
|
|
|
|
src/os/win32/ngx_win32_config.h \
|
|
|
|
src/os/win32/ngx_time.h \
|
|
|
|
src/os/win32/ngx_types.h \
|
|
|
|
src/os/win32/ngx_errno.h \
|
2004-06-07 03:49:18 +08:00
|
|
|
src/os/win32/ngx_alloc.h \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/win32/ngx_files.h \
|
2004-06-18 01:18:53 +08:00
|
|
|
src/os/win32/ngx_shared.h \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/win32/ngx_process.h \
|
2004-06-30 23:30:41 +08:00
|
|
|
src/os/win32/ngx_atomic.h \
|
2004-11-11 22:07:14 +08:00
|
|
|
src/os/win32/ngx_thread.h \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/win32/ngx_socket.h \
|
2004-03-04 15:04:55 +08:00
|
|
|
src/os/win32/ngx_os.h \
|
2005-03-23 00:02:46 +08:00
|
|
|
src/os/win32/ngx_user.h \
|
2004-11-11 22:07:14 +08:00
|
|
|
src/os/win32/ngx_gui.h \
|
2005-01-25 20:27:35 +08:00
|
|
|
src/os/win32/ngx_gui_resources.h \
|
2004-03-04 15:04:55 +08:00
|
|
|
src/os/win32/ngx_process_cycle.h"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-03-10 03:47:07 +08:00
|
|
|
WIN32_CONFIG=src/os/win32/ngx_win32_config.h
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
|
|
|
|
src/os/win32/ngx_errno.c \
|
2004-06-07 03:49:18 +08:00
|
|
|
src/os/win32/ngx_alloc.c \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/win32/ngx_files.c \
|
|
|
|
src/os/win32/ngx_time.c \
|
2004-03-04 15:04:55 +08:00
|
|
|
src/os/win32/ngx_process.c \
|
2004-11-11 22:07:14 +08:00
|
|
|
src/os/win32/ngx_thread.c \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/os/win32/ngx_socket.c \
|
|
|
|
src/os/win32/ngx_wsarecv.c \
|
|
|
|
src/os/win32/ngx_wsarecv_chain.c \
|
|
|
|
src/os/win32/ngx_wsasend_chain.c \
|
|
|
|
src/os/win32/ngx_win32_init.c \
|
2005-03-23 00:02:46 +08:00
|
|
|
src/os/win32/ngx_user.c \
|
2004-11-11 22:07:14 +08:00
|
|
|
src/os/win32/ngx_gui.c \
|
2004-03-04 15:04:55 +08:00
|
|
|
src/os/win32/ngx_process_cycle.c \
|
2003-11-26 04:44:56 +08:00
|
|
|
src/event/ngx_event_acceptex.c"
|
|
|
|
|
2005-01-25 20:27:35 +08:00
|
|
|
NGX_WIN32_ICONS="src/os/win32/nginx.ico src/os/win32/nginx_tray.ico"
|
2004-11-11 22:07:14 +08:00
|
|
|
NGX_WIN32_RC="src/os/win32/nginx.rc"
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
|
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.
2005-01-18 21:03:58 +08:00
|
|
|
# the http modules that have their logging formats
|
|
|
|
# must be after ngx_http_log_module
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
HTTP_MODULES="ngx_http_module \
|
2004-09-07 23:29:22 +08:00
|
|
|
ngx_http_core_module \
|
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.
2005-01-18 21:03:58 +08:00
|
|
|
ngx_http_log_module \
|
|
|
|
ngx_http_upstream_module"
|
2004-03-13 00:57:08 +08:00
|
|
|
|
2004-12-21 20:30:30 +08:00
|
|
|
HTTP_CACHE_MODULE=ngx_http_cache_module
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-07-15 00:01:42 +08:00
|
|
|
HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module"
|
|
|
|
HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
nginx-0.1.29-RELEASE import
*) Feature: the ngx_http_ssi_module supports "include virtual" command.
*) Feature: the ngx_http_ssi_module supports the condition command like
'if expr="$NAME"' and "else" and "endif" commands. Only one nested
level is supported.
*) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and
DATE_GMT variables and "config timefmt" command.
*) Feature: the "ssi_ignore_recycled_buffers" directive.
*) Bugfix: the "echo" command did not show the default value for the
empty QUERY_STRING variable.
*) Change: the ngx_http_proxy_module was rewritten.
*) Feature: the "proxy_redirect", "proxy_pass_request_headers",
"proxy_pass_request_body", and "proxy_method" directives.
*) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
canceled and must be replaced with the proxy_set_header directive.
*) Change: the "proxy_preserve_host" is canceled and must be replaced
with the "proxy_set_header Host $host" and the "proxy_redirect off"
directives, the "proxy_set_header Host $host:$proxy_port" directive
and the appropriate proxy_redirect directives.
*) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
with the "proxy_set_header X-Real-IP $remote_addr" directive.
*) Change: the "proxy_add_x_forwarded_for" is canceled and must be
replaced with
the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
directive.
*) Change: the "proxy_set_x_url" is canceled and must be replaced with
the "proxy_set_header X-URL http://$host:$server_port$request_uri"
directive.
*) Feature: the "fastcgi_param" directive.
*) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
directive are canceled and must be replaced with the fastcgi_param
directives.
*) Feature: the "index" directive can use the variables.
*) Feature: the "index" directive can be used at http and server levels.
*) Change: the last index only in the "index" directive can be absolute.
*) Feature: the "rewrite" directive can use the variables.
*) Feature: the "internal" directive.
*) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
*) Change: nginx now passes the invalid lines in a client request
headers or a backend response header.
*) Bugfix: if the backend did not transfer response for a long time and
the "send_timeout" was less than "proxy_read_timeout", then nginx
returned the 408 response.
*) Bugfix: the segmentation fault was occurred if the backend sent an
invalid line in response header; the bug had appeared in 0.1.26.
*) Bugfix: the segmentation fault may occurred in FastCGI fault
tolerance configuration.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" and "Cache-Control" headers.
*) Bugfix: nginx did not take into account trailing dot in "Host"
header line.
*) Bugfix: the ngx_http_auth_module did not work under Linux.
*) Bugfix: the rewrite directive worked incorrectly, if the arguments
were in a request.
*) Bugfix: nginx could not be built on MacOS X.
2005-05-12 22:58:06 +08:00
|
|
|
HTTP_POSTPONE_FILTER_MODULE=ngx_http_postpone_filter_module
|
|
|
|
HTTP_COPY_FILTER_MODULE=ngx_http_copy_filter_module
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module
|
2004-04-26 04:13:21 +08:00
|
|
|
HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module
|
2004-05-12 13:37:55 +08:00
|
|
|
|
|
|
|
HTTP_RANGE_HEADER_FILTER_MODULE=ngx_http_range_header_filter_module
|
|
|
|
HTTP_RANGE_BODY_FILTER_MODULE=ngx_http_range_body_filter_module
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
|
|
|
|
|
|
|
|
HTTP_STATIC_MODULE=ngx_http_static_module
|
|
|
|
HTTP_INDEX_MODULE=ngx_http_index_module
|
|
|
|
|
2004-03-30 01:43:58 +08:00
|
|
|
HTTP_INCS="src/http src/http/modules"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
HTTP_DEPS="src/http/ngx_http.h \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/http/ngx_http_request.h \
|
|
|
|
src/http/ngx_http_config.h \
|
|
|
|
src/http/ngx_http_core_module.h \
|
|
|
|
src/http/ngx_http_cache.h \
|
2005-03-04 22:06:57 +08:00
|
|
|
src/http/ngx_http_variables.h \
|
2005-04-08 23:18:55 +08:00
|
|
|
src/http/ngx_http_script.h \
|
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.
2005-01-18 21:03:58 +08:00
|
|
|
src/http/ngx_http_upstream.h \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/http/ngx_http_busy_lock.h \
|
2005-03-19 20:38:37 +08:00
|
|
|
src/http/ngx_http_log_module.h"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
HTTP_SRCS="src/http/ngx_http.c \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/http/ngx_http_core_module.c \
|
|
|
|
src/http/ngx_http_special_response.c \
|
|
|
|
src/http/ngx_http_request.c \
|
|
|
|
src/http/ngx_http_parse.c \
|
2005-03-19 20:38:37 +08:00
|
|
|
src/http/ngx_http_header_filter_module.c \
|
|
|
|
src/http/ngx_http_write_filter_module.c \
|
|
|
|
src/http/ngx_http_copy_filter_module.c \
|
|
|
|
src/http/ngx_http_log_module.c \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/http/ngx_http_request_body.c \
|
2005-03-04 22:06:57 +08:00
|
|
|
src/http/ngx_http_variables.c \
|
2005-04-08 23:18:55 +08:00
|
|
|
src/http/ngx_http_script.c \
|
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.
2005-01-18 21:03:58 +08:00
|
|
|
src/http/ngx_http_upstream.c \
|
2004-09-07 23:29:22 +08:00
|
|
|
src/http/ngx_http_parse_time.c \
|
2005-03-19 20:38:37 +08:00
|
|
|
src/http/modules/ngx_http_static_module.c \
|
|
|
|
src/http/modules/ngx_http_index_module.c \
|
|
|
|
src/http/modules/ngx_http_chunked_filter_module.c \
|
|
|
|
src/http/modules/ngx_http_range_filter_module.c \
|
|
|
|
src/http/modules/ngx_http_headers_filter_module.c \
|
|
|
|
src/http/modules/ngx_http_not_modified_filter_module.c"
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-03-13 00:57:08 +08:00
|
|
|
# STUB
|
|
|
|
HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c"
|
|
|
|
|
nginx-0.1.29-RELEASE import
*) Feature: the ngx_http_ssi_module supports "include virtual" command.
*) Feature: the ngx_http_ssi_module supports the condition command like
'if expr="$NAME"' and "else" and "endif" commands. Only one nested
level is supported.
*) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and
DATE_GMT variables and "config timefmt" command.
*) Feature: the "ssi_ignore_recycled_buffers" directive.
*) Bugfix: the "echo" command did not show the default value for the
empty QUERY_STRING variable.
*) Change: the ngx_http_proxy_module was rewritten.
*) Feature: the "proxy_redirect", "proxy_pass_request_headers",
"proxy_pass_request_body", and "proxy_method" directives.
*) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
canceled and must be replaced with the proxy_set_header directive.
*) Change: the "proxy_preserve_host" is canceled and must be replaced
with the "proxy_set_header Host $host" and the "proxy_redirect off"
directives, the "proxy_set_header Host $host:$proxy_port" directive
and the appropriate proxy_redirect directives.
*) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
with the "proxy_set_header X-Real-IP $remote_addr" directive.
*) Change: the "proxy_add_x_forwarded_for" is canceled and must be
replaced with
the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
directive.
*) Change: the "proxy_set_x_url" is canceled and must be replaced with
the "proxy_set_header X-URL http://$host:$server_port$request_uri"
directive.
*) Feature: the "fastcgi_param" directive.
*) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
directive are canceled and must be replaced with the fastcgi_param
directives.
*) Feature: the "index" directive can use the variables.
*) Feature: the "index" directive can be used at http and server levels.
*) Change: the last index only in the "index" directive can be absolute.
*) Feature: the "rewrite" directive can use the variables.
*) Feature: the "internal" directive.
*) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
*) Change: nginx now passes the invalid lines in a client request
headers or a backend response header.
*) Bugfix: if the backend did not transfer response for a long time and
the "send_timeout" was less than "proxy_read_timeout", then nginx
returned the 408 response.
*) Bugfix: the segmentation fault was occurred if the backend sent an
invalid line in response header; the bug had appeared in 0.1.26.
*) Bugfix: the segmentation fault may occurred in FastCGI fault
tolerance configuration.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" and "Cache-Control" headers.
*) Bugfix: nginx did not take into account trailing dot in "Host"
header line.
*) Bugfix: the ngx_http_auth_module did not work under Linux.
*) Bugfix: the rewrite directive worked incorrectly, if the arguments
were in a request.
*) Bugfix: nginx could not be built on MacOS X.
2005-05-12 22:58:06 +08:00
|
|
|
HTPP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c
|
|
|
|
|
2004-03-13 00:57:08 +08:00
|
|
|
HTPP_CACHE_SRCS=src/http/ngx_http_cache.c
|
|
|
|
HTPP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2004-06-23 00:43:09 +08:00
|
|
|
HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter_module.c
|
2004-06-23 00:43:09 +08:00
|
|
|
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter_module.c
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
|
2004-01-26 16:52:49 +08:00
|
|
|
HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c
|
2004-01-26 16:52:49 +08:00
|
|
|
|
|
|
|
|
2004-08-29 11:55:41 +08:00
|
|
|
HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter_module.c
|
2004-06-25 00:07:04 +08:00
|
|
|
|
|
|
|
|
2004-08-29 11:55:41 +08:00
|
|
|
HTTP_ACCESS_MODULE=ngx_http_access_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_module.c
|
2004-08-27 23:40:59 +08:00
|
|
|
|
|
|
|
|
2005-03-23 00:02:46 +08:00
|
|
|
HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module
|
|
|
|
HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c
|
|
|
|
|
|
|
|
|
2004-10-25 23:29:23 +08:00
|
|
|
HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c
|
2004-10-25 23:29:23 +08:00
|
|
|
|
|
|
|
|
2004-06-24 15:53:37 +08:00
|
|
|
HTTP_STATUS_MODULE=ngx_http_status_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_module.c
|
2004-06-24 15:53:37 +08:00
|
|
|
|
|
|
|
|
2005-02-04 03:33:37 +08:00
|
|
|
HTTP_GEO_MODULE=ngx_http_geo_module
|
|
|
|
HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c
|
|
|
|
|
|
|
|
|
2004-06-24 15:53:37 +08:00
|
|
|
HTTP_REWRITE_MODULE=ngx_http_rewrite_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_module.c
|
2004-06-24 15:53:37 +08:00
|
|
|
|
|
|
|
|
2004-07-17 01:11:43 +08:00
|
|
|
HTTP_SSL_MODULE=ngx_http_ssl_module
|
|
|
|
HTTP_SSL_DEPS=src/http/modules/ngx_http_ssl_module.h
|
|
|
|
HTTP_SSL_SRCS=src/http/modules/ngx_http_ssl_module.c
|
|
|
|
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
HTTP_PROXY_MODULE=ngx_http_proxy_module
|
nginx-0.1.29-RELEASE import
*) Feature: the ngx_http_ssi_module supports "include virtual" command.
*) Feature: the ngx_http_ssi_module supports the condition command like
'if expr="$NAME"' and "else" and "endif" commands. Only one nested
level is supported.
*) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and
DATE_GMT variables and "config timefmt" command.
*) Feature: the "ssi_ignore_recycled_buffers" directive.
*) Bugfix: the "echo" command did not show the default value for the
empty QUERY_STRING variable.
*) Change: the ngx_http_proxy_module was rewritten.
*) Feature: the "proxy_redirect", "proxy_pass_request_headers",
"proxy_pass_request_body", and "proxy_method" directives.
*) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
canceled and must be replaced with the proxy_set_header directive.
*) Change: the "proxy_preserve_host" is canceled and must be replaced
with the "proxy_set_header Host $host" and the "proxy_redirect off"
directives, the "proxy_set_header Host $host:$proxy_port" directive
and the appropriate proxy_redirect directives.
*) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
with the "proxy_set_header X-Real-IP $remote_addr" directive.
*) Change: the "proxy_add_x_forwarded_for" is canceled and must be
replaced with
the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
directive.
*) Change: the "proxy_set_x_url" is canceled and must be replaced with
the "proxy_set_header X-URL http://$host:$server_port$request_uri"
directive.
*) Feature: the "fastcgi_param" directive.
*) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
directive are canceled and must be replaced with the fastcgi_param
directives.
*) Feature: the "index" directive can use the variables.
*) Feature: the "index" directive can be used at http and server levels.
*) Change: the last index only in the "index" directive can be absolute.
*) Feature: the "rewrite" directive can use the variables.
*) Feature: the "internal" directive.
*) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
*) Change: nginx now passes the invalid lines in a client request
headers or a backend response header.
*) Bugfix: if the backend did not transfer response for a long time and
the "send_timeout" was less than "proxy_read_timeout", then nginx
returned the 408 response.
*) Bugfix: the segmentation fault was occurred if the backend sent an
invalid line in response header; the bug had appeared in 0.1.26.
*) Bugfix: the segmentation fault may occurred in FastCGI fault
tolerance configuration.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" and "Cache-Control" headers.
*) Bugfix: nginx did not take into account trailing dot in "Host"
header line.
*) Bugfix: the ngx_http_auth_module did not work under Linux.
*) Bugfix: the rewrite directive worked incorrectly, if the arguments
were in a request.
*) Bugfix: nginx could not be built on MacOS X.
2005-05-12 22:58:06 +08:00
|
|
|
HTTP_PROXY_SRCS=src/http/modules/ngx_http_proxy_module.c
|
2004-09-07 23:29:22 +08:00
|
|
|
|
|
|
|
|
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.
2005-01-18 21:03:58 +08:00
|
|
|
HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module
|
2005-03-19 20:38:37 +08:00
|
|
|
HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c
|
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.
2005-01-18 21:03:58 +08:00
|
|
|
|
|
|
|
|
2004-09-07 23:29:22 +08:00
|
|
|
IMAP_INCS="src/imap"
|
|
|
|
|
|
|
|
IMAP_DEPS="src/imap/ngx_imap.h"
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
IMAP_MODULES="ngx_imap_module ngx_imap_core_module"
|
|
|
|
|
2004-09-07 23:29:22 +08:00
|
|
|
IMAP_SRCS="src/imap/ngx_imap.c \
|
2005-06-07 23:56:31 +08:00
|
|
|
src/imap/ngx_imap_core_module.c \
|
2004-10-21 23:34:38 +08:00
|
|
|
src/imap/ngx_imap_handler.c \
|
2005-06-07 23:56:31 +08:00
|
|
|
src/imap/ngx_imap_parse.c"
|
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
IMAP_SSL_MODULE="ngx_imap_ssl_module"
|
|
|
|
IMAP_SSL_DEPS="src/imap/ngx_imap_ssl_module.h"
|
|
|
|
IMAP_SSL_SRCS="src/imap/ngx_imap_ssl_module.c"
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
IMAP_AUTH_HTTP_MODULE="ngx_imap_auth_http_module"
|
|
|
|
IMAP_AUTH_HTTP_SRCS="src/imap/ngx_imap_auth_http_module.c"
|
|
|
|
|
|
|
|
IMAP_PROXY_MODULE="ngx_imap_proxy_module"
|
|
|
|
IMAP_PROXY_SRCS="src/imap/ngx_imap_proxy_module.c"
|