| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2012-04-02 | Win32: improved ngx_mutex_init() stub (ticket #138). | Maxim Dounin | 1 | -1/+12 | |
| This allows to run nginx with "master_process off" under Windows. | |||||
| 2012-04-02 | Win32: fixed memory allocation for shmem name (ticket #134). | Maxim Dounin | 1 | -1/+1 | |
| 2012-04-02 | Upstream: reject upstreams without normal servers. | Maxim Dounin | 1 | -0/+7 | |
| Such upstreams cause CPU hog later in the code as number of peers isn't expected to be 0. Currently this may happen either if there are only backup servers defined in an upstream block, or if server with ipv6 address used in an upstream block. | |||||
| 2012-04-02 | Version bump. | Maxim Dounin | 2 | -3/+3 | |
| 2012-03-29 | Corrected spelling of error message (ticket #136). | Ruslan Ermilov | 1 | -1/+1 | |
| 2012-03-28 | release-1.1.18 tag | Maxim Dounin | 1 | -0/+1 | |
| 2012-03-28 | nginx-1.1.18-RELEASErelease-1.1.18 | Maxim Dounin | 1 | -0/+83 | |
| 2012-03-28 | Fixed win32 build after realpath changes in r4559. | Maxim Dounin | 2 | -3/+3 | |
| 2012-03-28 | Configure: fixed msghdr.msg_control test on 64bit platforms. | Maxim Dounin | 1 | -2/+2 | |
| Broken by r4560. | |||||
| 2012-03-28 | Replaced ngx_http_realip_from_t with ngx_in_cidr_t. | Ruslan Ermilov | 1 | -10/+4 | |
| 2012-03-28 | Fixed calculation of range boundaries. | Ruslan Ermilov | 1 | -11/+8 | |
| 2012-03-28 | Xslt: parser options now set with xmlCtxtUseOptions(). | Maxim Dounin | 1 | -3/+2 | |
| Note that "ctxt->loadsubset = 1" previously used isn't really correct as ctxt->loadsubset is a bitfield now. The use of xmlCtxtUseOptions() with XML_PARSE_DTDLOAD is believed to be a better way to do the same thing. Patch by Laurence Rowe. | |||||
| 2012-03-27 | Fixed more gcc46 warnings in configure tests. | Maxim Dounin | 5 | -26/+41 | |
| Steps to reproduce: ./configure --with-cc="gcc46" --with-cc-opt="-Wall -Werror -O2" | |||||
| 2012-03-27 | Fixed unconditional MAX_PATH usage (ticket #22). | Maxim Dounin | 3 | -3/+33 | |
| POSIX doesn't require it to be defined, and Debian GNU/Hurd doesn't define it. Note that if there is no MAX_PATH defined we have to use realpath() with NULL argument and free() the result. | |||||
| 2012-03-27 | Added explicit include of time.h. | Maxim Dounin | 3 | -0/+3 | |
| Most of the systems have it included due to namespace pollution, but relying on this is a bad idea. Explicit include is required for at least Debian GNU/Hurd. | |||||
| 2012-03-22 | Resolver: added missing sanity checking when creating name queries. | Maxim Dounin | 1 | -1/+5 | |
| Found by Veracode. | |||||
| 2012-03-22 | Win32: added missing call to srand(). | Maxim Dounin | 1 | -0/+2 | |
| Found by Veracode. | |||||
| 2012-03-22 | Added xslt_param and xslt_string_param directives. | Maxim Dounin | 1 | -33/+168 | |
| Based on patch by Samuel Behan. | |||||
| 2012-03-22 | Fixed off-by-one in xslt parameter parsing. | Maxim Dounin | 1 | -1/+1 | |
| The problem was introduced in 0.7.44 (r2589) during conversion to complex values. Previously string.len included space for terminating NUL, but with complex values it doesn't. | |||||
| 2012-03-22 | Restricted keepalive_disable safari to OS X only. | Maxim Dounin | 1 | -1/+3 | |
| The problem doesn't affect non-Apple systems for sure, and many pretend to be Safari now. Prodded by Piotr Sikora. | |||||
| 2012-03-22 | Removed safari from keepalive_disable default. | Maxim Dounin | 1 | -2/+1 | |
| The bug in question is likely already fixed (though unfortunately we have no information available as Apple's bugtracker isn't open), and the workaround seems to be too pessimistic for modern versions of Safari as well as other webkit-based browsers pretending to be Safari. | |||||
| 2012-03-21 | The addition of $tcpinfo_* variables has broken the build on Linux | Ruslan Ermilov | 1 | -0/+5 | |
| systems with glibc versions prior to 2.7. Fixed this by checking the existence of "struct tcp_info" members during configuration. | |||||
| 2012-03-21 | worker_cpu_affinity: cleaned up Linux implementation, added FreeBSD support. | Ruslan Ermilov | 9 | -28/+119 | |
| 2012-03-21 | If we inserted "Last-Modified" in r->headers_out.headers, don't | Ruslan Ermilov | 1 | -0/+2 | |
| forget to set the r->headers_out.last_modified pointer to it. | |||||
| 2012-03-21 | Minor ngx_http_headers_filter_module.c code cleanup. | Ruslan Ermilov | 1 | -22/+20 | |
| - Removed "hash" element from ngx_http_header_val_t which was always 1. - Replaced NGX_HTTP_EXPIRES_* with ngx_http_expires_t enum type. - Added prototype for ngx_http_add_header() - Simplified ngx_http_set_last_modified(). | |||||
| 2012-03-19 | For the sake of case/switch code readability, 'fall through' | Maxim Konovalov | 2 | -0/+5 | |
| comments added. | |||||
| 2012-03-16 | Implemented $tcpinfo_rtt, $tcpinfo_rttvar, $tcpinfo_snd_cwnd, and | Ruslan Ermilov | 2 | -0/+86 | |
| $tcpinfo_rcv_space variables. Supported on Linux and FreeBSD. | |||||
| 2012-03-16 | Some older OSes (notably FreeBSD 4.x) did not have %zu | Ruslan Ermilov | 1 | -1/+1 | |
| format specifier, so revert to using %d. | |||||
| 2012-03-15 | Fixed compilation warnings in configuration C tests. | Ruslan Ermilov | 5 | -12/+19 | |
| Based on a patch by Piotr Sikora. | |||||
| 2012-03-15 | Local variable "ngx_http_next_filter" renamed to "ngx_http_next_body_filter" | Ruslan Ermilov | 2 | -7/+8 | |
| for consistency with other modules. | |||||
| 2012-03-15 | The "error_log" directive specified in the "http", "server", and | Ruslan Ermilov | 1 | -2/+9 | |
| "location" sections now understands the special "stderr" parameter. It was already treated specially when specified in the main section. | |||||
| 2012-03-15 | Slight optimization in ngx_http_get_variable_index(). | Ruslan Ermilov | 1 | -1/+1 | |
| 2012-03-15 | - New variable: $connection_requests. | Ruslan Ermilov | 1 | -1/+13 | |
| - While here, fixed format specifier for $connection. | |||||
| 2012-03-15 | Version bump. | Maxim Dounin | 2 | -3/+3 | |
| 2012-03-15 | release-1.1.17 tag | Maxim Dounin | 1 | -0/+1 | |
| 2012-03-15 | nginx-1.1.17-RELEASErelease-1.1.17 | Maxim Dounin | 1 | -0/+38 | |
| 2012-03-15 | Headers with null character are now rejected. | Maxim Dounin | 1 | -0/+14 | |
| Headers with NUL character aren't allowed by HTTP standard and may cause various security problems. They are now unconditionally rejected. | |||||
| 2012-03-15 | Fixed incorrect ngx_cpystrn() usage in ngx_http_*_process_header(). | Maxim Dounin | 4 | -10/+16 | |
| This resulted in a disclosure of previously freed memory if upstream server returned specially crafted response, potentially exposing sensitive information. Reported by Matthew Daley. | |||||
| 2012-03-15 | Fixed ssi and perl interaction. | Maxim Dounin | 1 | -2/+12 | |
| Embedded perl module assumes there is a space for terminating NUL character, make sure to provide it in all situations by allocating one extra byte for value buffer. Default ssi_value_length is reduced accordingly to preserve 256 byte allocations. While here, fixed another one byte value buffer overrun possible in ssi_quoted_symbol_state. Reported by Matthew Daley. | |||||
| 2012-03-15 | Uwsgi: merged r->http_version fixes from scgi module. | Maxim Dounin | 1 | -12/+3 | |
| Fixed incorrect use of r->http_version (r4372). Removed duplicate function declaration (r4373). Removed error if there is no Status header (r4374). | |||||
| 2012-03-15 | Updated OpenSSL and PCRE used for win32 builds. | Maxim Dounin | 1 | -2/+2 | |
| 2012-03-12 | Mentioned the NGINX environment variable. | Ruslan Ermilov | 1 | -1/+7 | |
| 2012-03-11 | Added scgi_temp and uwsgi_temp to svn:ignore. | Ruslan Ermilov | 0 | -0/+0 | |
| 2012-03-06 | - Applied some of the OpenBSD changes. | Ruslan Ermilov | 1 | -48/+42 | |
| - Expanded contractions. - Fixed some markup. - Updated URL of official documentation. | |||||
| 2012-03-05 | Whitespace fixes. | Maxim Dounin | 9 | -9/+14 | |
| 2012-03-05 | Grammar and wording fixes in CHANGES. | Maxim Dounin | 1 | -4/+4 | |
| 2012-03-05 | Version bump. | Maxim Dounin | 2 | -3/+3 | |
| 2012-02-29 | release-1.1.16 tag | Maxim Dounin | 1 | -0/+1 | |
| 2012-02-29 | nginx-1.1.16-RELEASErelease-1.1.16 | Maxim Dounin | 1 | -0/+113 | |
| 2012-02-28 | Raised simultaneous subrequest limit from 50 to 200. | Maxim Dounin | 1 | -1/+1 | |
| It wasn't enforced for a long time, and there are reports that people use up to 100 simultaneous subrequests now. As this is a safety limit to prevent loops, it's raised accordingly. | |||||
