Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-02-05AIX has no WCOREDUMP()Igor Sysoev
2008-04-09grammar fixIgor Sysoev
2006-12-23lower the log level of the waitpid() ENOCHILD error on FreeBSDIgor Sysoev
2006-09-16fix typoIgor Sysoev
2005-10-19nginx-0.3.3-RELEASE importrelease-0.3.3Igor Sysoev
*) Change: the "bl" and "af" parameters of the "listen" directive was renamed to the "backlog" and "accept_filter". *) Feature: the "rcvbuf" and "sndbuf" parameters of the "listen" directive. *) Change: the "$msec" log parameter does not require now the additional the gettimeofday() system call. *) Feature: the -t switch now tests the "listen" directives. *) Bugfix: if the invalid address was specified in the "listen" directive, then after the -HUP signal nginx left an open socket in the CLOSED state. *) Bugfix: the mime type may be incorrectly set to default value for index file with variable in the name; the bug had appeared in 0.3.0. *) Feature: the "timer_resolution" directive. *) Feature: the millisecond "$upstream_response_time" log parameter. *) Bugfix: a temporary file with client request body now is removed just after the response header was transferred to a client. *) Bugfix: OpenSSL 0.9.6 compatibility. *) Bugfix: the SSL certificate and key file paths could not be relative. *) Bugfix: the "ssl_prefer_server_ciphers" directive did not work in the ngx_imap_ssl_module. *) Bugfix: the "ssl_protocols" directive allowed to specify the single protocol only.
2005-10-07nginx-0.3.0-RELEASE importrelease-0.3.0Igor Sysoev
*) Change: the 10-days live time limit of worker process was eliminated. The limit was introduced because of millisecond timers overflow.
2005-09-23nginx-0.2.0-RELEASE importrelease-0.2.0Igor Sysoev
*) The pid-file names used during online upgrade was changed and now is not required a manual rename operation. The old master process adds the ".oldbin" suffix to its pid-file and executes a new binary file. The new master process creates usual pid-file without the ".newbin" suffix. If the master process exits, then old master process renames back its pid-file with the ".oldbin" suffix to the pid-file without suffix. *) Change: the "worker_connections" directive, new name of the "connections" directive; now the directive specifies maximum number of connections, but not maximum socket descriptor number. *) Feature: SSL supports the session cache inside one worker process. *) Feature: the "satisfy_any" directive. *) Change: the ngx_http_access_module and ngx_http_auth_basic_module do not run for subrequests. *) Feature: the "worker_rlimit_nofile" and "worker_rlimit_sigpending" directives. *) Bugfix: if all backend using in load-balancing failed after one error, then nginx did not try do connect to them during 60 seconds. *) Bugfix: in IMAP/POP3 command argument parsing. Thanks to Rob Mueller. *) Bugfix: errors while using SSL in IMAP/POP3 proxy. *) Bugfix: errors while using SSI and gzipping. *) Bugfix: the "Expires" and "Cache-Control" header lines were omitted from the 304 responses. Thanks to Alexandr Kukushkin.
2005-09-06nginx-0.1.44-RELEASE importrelease-0.1.44Igor Sysoev
*) Feature: the IMAP/POP3 proxy supports SSL. *) Feature: the "proxy_timeout" directive of the ngx_imap_proxy_module. *) Feature: the "userid_mark" directive. *) Feature: the $remote_user variable value is determined independently of authorization use.
2005-05-19nginx-0.1.32-RELEASE importrelease-0.1.32Igor Sysoev
*) Bugfix: the arguments were omitted in the redirects, issued by the "rewrite" directive; the bug had appeared in 0.1.29. *) Feature: the "if" directive supports the captures in regular expressions. *) Feature: the "set" directive supports the variables and the captures of regular expressions. *) Feature: the "X-Accel-Redirect" response header line is supported in proxy and FastCGI mode.
2005-03-19nginx-0.1.25-RELEASE importrelease-0.1.25Igor Sysoev
*) 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.
2004-12-21nginx-0.1.13-RELEASE importrelease-0.1.13Igor Sysoev
*) Feature: the server_names_hash and server_names_hash_threshold directives. *) Bugfix: the *.domain.tld names in the "server_name" directive did not work. *) Bugfix: the %request_length log parameter logged the incorrect length.
2004-11-11nginx-0.1.5-RELEASE importrelease-0.1.5Igor Sysoev
*) 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 Sysoev
*) 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 Sysoev
*) 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 Sysoev
2004-09-28nginx-0.1.0-2004-09-28-12:34:51 import; set copyright and remove unused filesIgor Sysoev
2004-07-14nginx-0.0.7-2004-07-14-20:01:42 importIgor Sysoev
2004-07-13nginx-0.0.7-2004-07-13-21:59:12 importIgor Sysoev
2004-06-23nginx-0.0.7-2004-06-23-19:18:17 importIgor Sysoev
2004-06-23nginx-0.0.7-2004-06-23-09:54:27 importIgor Sysoev
2004-06-18nginx-0.0.7-2004-06-18-20:22:16 importIgor Sysoev
2004-06-15nginx-0.0.7-2004-06-15-21:47:16 importIgor Sysoev
2004-06-15nginx-0.0.7-2004-06-15-11:55:11 importIgor Sysoev
2004-04-16nginx-0.0.3-2004-04-16-09:14:16 importIgor Sysoev
2004-04-05nginx-0.0.3-2004-04-05-00:32:09 importIgor Sysoev
2004-03-04nginx-0.0.2-2004-03-04-19:34:23 importIgor Sysoev
2004-03-01nginx-0.0.2-2004-03-01-00:03:02 importIgor Sysoev
2004-02-03nginx-0.0.2-2004-02-03-19:43:54 importIgor Sysoev
2004-02-03nginx-0.0.2-2004-02-03-00:19:52 importIgor Sysoev
2004-01-20nginx-0.0.1-2004-01-20-23:40:08 importIgor Sysoev
2004-01-14nginx-0.0.1-2004-01-14-21:19:42 importIgor Sysoev
2004-01-14nginx-0.0.1-2004-01-14-00:33:59 importIgor Sysoev
2004-01-13nginx-0.0.1-2004-01-13-19:43:23 importIgor Sysoev
2004-01-13nginx-0.0.1-2004-01-13-09:39:14 importIgor Sysoev
2004-01-09nginx-0.0.1-2004-01-09-00:02:06 importIgor Sysoev
2004-01-08nginx-0.0.1-2004-01-08-20:08:10 importIgor Sysoev
2004-01-08nginx-0.0.1-2004-01-08-11:47:17 importIgor Sysoev
2004-01-06nginx-0.0.1-2004-01-06-19:49:34 importIgor Sysoev
2004-01-05nginx-0.0.1-2004-01-05-23:55:48 importIgor Sysoev
2003-11-25nginx-0.0.1-2003-11-25-23:44:56 importIgor Sysoev
2003-11-19nginx-0.0.1-2003-11-19-19:26:41 importIgor Sysoev