summaryrefslogtreecommitdiffhomepage
path: root/src/event/modules (follow)
AgeCommit message (Collapse)AuthorFilesLines
2005-03-19nginx-0.1.25-RELEASE importrelease-0.1.25Igor Sysoev7-58/+90
*) Bugfix: nginx did run on Linux parisc. *) Feature: nginx now does not start under FreeBSD if the sysctl kern.ipc.somaxconn value is too big. *) Bugfix: if a request was internally redirected by the ngx_http_index_module module to the ngx_http_proxy_module or ngx_http_fastcgi_module modules, then the index file was not closed after request completion. *) Feature: the "proxy_pass" can be used in location with regular expression. *) Feature: the ngx_http_rewrite_filter_module module supports the condition like "if ($HTTP_USER_AGENT ~ MSIE)". *) Bugfix: nginx started too slow if the large number of addresses and text values were used in the "geo" directive. *) Change: a variable name must be declared as "$name" in the "geo" directive. The previous variant without "$" is still supported, but will be removed soon. *) Feature: the "%{VARIABLE}v" logging parameter. *) Feature: the "set $name value" directive. *) Bugfix: gcc 4.0 compatibility. *) Feature: the --with-openssl-opt=OPTIONS autoconfiguration directive.
2005-03-04nginx-0.1.24-RELEASE importrelease-0.1.24Igor Sysoev6-136/+184
*) Feature: the ngx_http_ssi_filter_module supports the QUERY_STRING and DOCUMENT_URI variables. *) Bugfix: the ngx_http_autoindex_module may some times return the 404 response for existent directory, if this directory was used in "alias" directive. *) Bugfix: the ngx_http_ssi_filter_module ran incorrectly for large responses. *) Bugfix: the lack of the "Referer" header line was always accounted as valid referrer.
2005-02-22nginx-0.1.21-RELEASE importrelease-0.1.21Igor Sysoev1-5/+5
*) Bugfix: the ngx_http_stub_status_module showed incorrect statistics if "rtsig" method was used or if several worker process ran on SMP. *) Bugfix: nginx could not be built by the icc compiler on Linux or if the zlib-1.2.x library was building from sources. *) Bugfix: nginx could not be built on NetBSD 2.0.
2005-02-16nginx-0.1.19-RELEASE importrelease-0.1.19Igor Sysoev1-1/+1
*) Bugfix: now, if request contains the zero, then the 404 error is returned for the local requests. *) Bugfix: nginx could not be built on NetBSD 2.0. *) Bugfix: the timeout may occur while reading of the the client request body via SSL connections.
2005-02-09nginx-0.1.18-RELEASE importrelease-0.1.18Igor Sysoev2-3/+10
*) Workaround: the default values of the devpoll_events and the devpoll_changes directives changed from 512 to 32 to be compatible with Solaris 10. *) Bugfix: the proxy_set_x_var and fastcgi_set_var directives were not inherited. *) Bugfix: in the redirect rewrite directive the arguments were concatenated with URI by the "&" rather than the "?". *) Bugfix: the lines without trailing ";" in the file being included by the ngx_http_geo_module were silently ignored. *) Feature: the ngx_http_stub_status_module. *) Bugfix: the unknown log format in the access_log directive caused the segmentation fault. *) Feature: the new "document_root" parameter of the fastcgi_params directive. *) Feature: the fastcgi_redirect_errors directive. *) Feature: the new "break" modifier of the "rewrite" directive allows to stop the rewrite/location cycle and sets the current configuration to the request.
2005-01-25nginx-0.1.16-RELEASE importrelease-0.1.16Igor Sysoev3-46/+82
*) Bugfix: if the response were transferred by chunks, then on the HEAD request the final chunk was issued. *) Bugfix: the "Connection: keep-alive" header were issued, even if the keepalive_timeout directive forbade the keep-alive use. *) Bugfix: the errors in the ngx_http_fastcgi_module caused the segmentation faults. *) Bugfix: the compressed response encrypted by SSL may not transferred complete. *) Bugfix: the TCP-specific TCP_NODELAY, TCP_NOPSUH, and TCP_CORK options, are not used for the unix domain sockets. *) Feature: the rewrite directive supports the arguments rewriting. *) Bugfix: the response code 400 was returned for the POST request with the "Content-Length: 0" header; the bug had appeared in 0.1.14.
2005-01-19nginx-0.1.15-RELEASE importrelease-0.1.15Igor Sysoev1-4/+4
*) Bugfix: the error while the connecting to the FastCGI server caused segmentation fault. *) Bugfix: the correct handling of the regular expression, that has different number of the captures and substitutions. *) Feature: the location, that is passed to the FastCGI server, can be regular expression. *) Bugfix: the FastCGI's parameter REQUEST_URI is now passed with the arguments and in the original state. *) Bugfix: the ngx_http_rewrite_module module was required to be built to use the regular expressions in locations. *) Bugfix: the directive "proxy_preserve_host on" adds port 80 to the "Host" headers, if upstream listen on port 80; the bug had appeared in 0.1.14. *) Bugfix: the same paths in autoconfiguration parameters --http-client-body-temp-path=PATH and --http-proxy-temp-path=PATH, or --http-client-body-temp-path=PATH and --http-fastcgi-temp-path=PATH caused segmentation fault.
2004-12-02nginx-0.1.11-RELEASE importrelease-0.1.11Igor Sysoev1-0/+11
*) Feature: the worker_priority directive. *) Change: both tcp_nopush and tcp_nodelay directives affect the transferred response. *) Bugfix: nginx did not call initgroups(). Thanks to Andrew Sitnikov and Andrei Nigmatulin. *) Change: now the ngx_http_autoindex_module shows the file size in the bytes. *) Bugfix: the ngx_http_autoindex_module returned the 500 error if the broken symlink was in a directory. *) Bugfix: the files bigger than 4G could not be transferred using sendfile. *) Bugfix: if the backend was resolved to several backends and there was an error while the response waiting then process may got caught in an endless loop. *) Bugfix: the worker process may exit with the "unknown cycle" message when the /dev/poll method was used. *) Bugfix: "close() channel failed" errors. *) Bugfix: the autodetection of the "nobody" and "nogroup" groups. *) Bugfix: the send_lowat directive did not work on Linux. *) Bugfix: the segmentation fault occurred if there was no events section in configuration. *) Bugfix: nginx could not be built on OpenBSD. *) Bugfix: the double slashes in "://" in the URI were converted to ":/".
2004-11-25nginx-0.1.9-RELEASE importrelease-0.1.9Igor Sysoev6-14/+14
*) Bugfix: the proxied request was sent without arguments if the request contains "//", "/./", "/../" or "%XX". *) Bugfix: the large compressed responses may be transferred not completely. *) Bugfix: the files bigger than 2G was not transferred on Linux that does not support sendfile64(). *) Bugfix: while the build configuration on Linux the --with-poll_module parameter was required; the bug had appeared in 0.1.8.
2004-11-11nginx-0.1.5-RELEASE importrelease-0.1.5Igor Sysoev8-68/+111
*) Bugfix: on Solaris and Linux there may be too many "recvmsg() returned not enough data" alerts. *) Bugfix: there were the "writev() failed (22: Invalid argument)" errors on Solaris in proxy mode without sendfile. On other platforms that do not support sendfile at all the process got caught in an endless loop. *) Bugfix: segmentation fault on Solaris in proxy mode and using sendfile. *) Bugfix: segmentation fault on Solaris. *) Bugfix: on-line upgrade did not work on Linux. *) Bugfix: the ngx_http_autoindex_module module did not escape the spaces, the quotes, and the percent signs in the directory listing. *) Change: the decrease of the copy operations. *) Feature: the userid_p3p directive.
2004-10-21nginx-0.1.2-RELEASE importrelease-0.1.2Igor Sysoev3-8/+18
*) Feature: the --user=USER, --group=GROUP, and --with-ld-opt=OPTIONS options in configure. *) Feature: the server_name directive supports *.domain.tld. *) Bugfix: the portability improvements. *) Bugfix: if configuration file was set in command line, the reconfiguration was impossible; the bug had appeared in 0.1.1. *) Bugfix: proxy module may get caught in an endless loop when sendfile is not used. *) Bugfix: with sendfile the response was not recoded according to the charset module directives; the bug had appeared in 0.1.1. *) Bugfix: very seldom bug in the kqueue processing. *) Bugfix: the gzip module compressed the proxied responses that was already compressed.
2004-10-11nginx-0.1.1-RELEASE importrelease-0.1.1Igor Sysoev2-21/+14
*) Feature: the gzip_types directive. *) Feature: the tcp_nodelay directive. *) Feature: the send_lowat directive is working not only on OSes that support kqueue NOTE_LOWAT, but also on OSes that support SO_SNDLOWAT. *) Feature: the setproctitle() emulation for Linux and Solaris. *) Bugfix: the "Location" header rewrite bug fixed while the proxying. *) Bugfix: the ngx_http_chunked_module module may get caught in an endless loop. *) Bugfix: the /dev/poll module bugs fixed. *) Bugfix: the responses were corrupted when the temporary files were used while the proxying. *) Bugfix: the unescaped requests were passed to the backend. *) Bugfix: while the build configuration on Linux 2.4 the --with-poll_module parameter was required.
2004-09-29nginx-0.1.0-2004-09-29-20:00:49 import; remove years from copyrightIgor Sysoev11-11/+11
2004-09-28nginx-0.1.0-2004-09-28-12:34:51 import; set copyright and remove unused filesIgor Sysoev12-48/+30
2004-09-14nginx-0.0.10-2004-09-14-19:55:24 importIgor Sysoev1-5/+5
2004-08-23nginx-0.0.10-2004-08-23-19:37:10 importIgor Sysoev1-1/+2
2004-07-28nginx-0.0.9-2004-07-28-20:16:50 importIgor Sysoev1-11/+9
2004-07-14nginx-0.0.7-2004-07-14-20:01:42 importIgor Sysoev1-30/+70
2004-07-13nginx-0.0.7-2004-07-14-00:24:56 importIgor Sysoev1-2/+10
2004-07-13nginx-0.0.7-2004-07-13-21:59:12 importIgor Sysoev7-12/+15
2004-07-12nginx-0.0.7-2004-07-13-00:43:53 importIgor Sysoev1-1/+5
2004-07-09nginx-0.0.7-2004-07-09-19:37:31 importIgor Sysoev1-23/+31
2004-07-08nginx-0.0.7-2004-07-08-19:17:47 importIgor Sysoev1-0/+2
2004-07-07nginx-0.0.7-2004-07-07-23:48:31 importIgor Sysoev1-3/+6
2004-07-07nginx-0.0.7-2004-07-07-19:01:00 importIgor Sysoev7-116/+252
2004-07-07nginx-0.0.7-2004-07-07-10:15:04 importIgor Sysoev7-45/+170
2004-07-06nginx-0.0.7-2004-07-06-20:12:16 importIgor Sysoev1-1/+1
2004-07-05nginx-0.0.7-2004-07-05-23:53:02 importIgor Sysoev1-1/+1
2004-07-05nginx-0.0.7-2004-07-05-19:08:23 importIgor Sysoev1-5/+2
2004-07-05nginx-0.0.7-2004-07-05-10:55:54 importIgor Sysoev1-3/+3
2004-07-02nginx-0.0.7-2004-07-02-19:54:34 importIgor Sysoev6-20/+7
2004-07-02nginx-0.0.7-2004-07-02-09:47:00 importIgor Sysoev1-6/+23
2004-06-30nginx-0.0.7-2004-06-30-19:30:41 importIgor Sysoev1-1/+2
2004-06-28nginx-0.0.7-2004-06-29-01:03:14 importIgor Sysoev1-19/+34
2004-06-28nginx-0.0.7-2004-06-28-20:05:02 importIgor Sysoev1-11/+15
2004-06-27nginx-0.0.7-2004-06-27-22:01:57 importIgor Sysoev1-4/+7
2004-06-22nginx-0.0.7-2004-06-22-20:43:09 importIgor Sysoev1-0/+4
2004-06-16nginx-0.0.7-2004-06-16-19:32:11 importIgor Sysoev3-54/+40
2004-06-15nginx-0.0.7-2004-06-15-21:47:16 importIgor Sysoev1-0/+2
2004-06-15nginx-0.0.7-2004-06-15-11:55:11 importIgor Sysoev1-4/+19
2004-06-11nginx-0.0.4-2004-06-11-10:15:08 importIgor Sysoev1-1/+1
2004-06-10nginx-0.0.4-2004-06-10-22:36:57 importIgor Sysoev1-40/+151
2004-06-09nginx-0.0.4-2004-06-10-00:03:54 importIgor Sysoev1-4/+9
2004-06-09nginx-0.0.4-2004-06-09-20:36:55 importIgor Sysoev1-10/+34
2004-06-09nginx-0.0.3-2004-06-09-11:45:27 importIgor Sysoev1-51/+173
2004-06-06nginx-0.0.3-2004-06-06-23:49:18 importIgor Sysoev1-2/+2
2004-06-01nginx-0.0.3-2004-06-01-10:04:46 importIgor Sysoev1-13/+41
2004-04-28nginx-0.0.3-2004-04-28-10:14:50 importIgor Sysoev2-2/+5
2004-04-26nginx-0.0.3-2004-04-26-17:40:01 importIgor Sysoev1-1/+1
2004-04-21nginx-0.0.3-2004-04-21-22:54:33 importIgor Sysoev6-82/+185