| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2012-12-23 | Access log: the "gzip" parameter of the "access_log" directive. | Valentin Bartenev | 1 | -5/+213 | |
| Note: this requires zlib version 1.2.0.4 or above to work. | |||||
| 2012-12-23 | Access log: the "flush" parameter of the "access_log" directive. | Valentin Bartenev | 1 | -23/+97 | |
| 2012-12-23 | Reopening log files code moved to a separate function. | Valentin Bartenev | 1 | -19/+71 | |
| The code refactored in a way to call custom handler that can do appropriate cleanup work (if any), like flushing buffers, finishing compress streams, finalizing connections to log daemon, etc.. | |||||
| 2012-12-23 | Access log: fixed redundant buffer reallocation. | Valentin Bartenev | 1 | -5/+9 | |
| Previously a new buffer was allocated for every "access_log" directive with the same file path and "buffer=" parameters, while only one buffer per file is used. | |||||
| 2012-10-29 | Variables $connection and $connection_requests. | Maxim Dounin | 1 | -23/+0 | |
| Log module counterparts are removed as they aren't used often and there is no need to preserve them for efficiency. | |||||
| 2012-10-03 | Log: $apache_bytes_sent removed. | Maxim Dounin | 1 | -8/+0 | |
| It was renamed to $body_bytes_sent in nginx 0.3.10 and the old name is deprecated since then. | |||||
| 2012-07-24 | Fixed compilation with -Wmissing-prototypes. | Ruslan Ermilov | 1 | -1/+1 | |
| 2012-06-18 | New core variable: $status. | Andrey Belov | 1 | -4/+1 | |
| Contains response status code as a 3-digit integer (with leading zeroes if necessary), or one of the following values: 000 - response status code has not yet been assigned 009 - HTTP/0.9 request is being processed | |||||
| 2012-05-16 | Zero padded the returned and logged HTTP status code, and fixed possible | Ruslan Ermilov | 1 | -2/+2 | |
| buffer overrun in $status handling. | |||||
| 2012-03-15 | - New variable: $connection_requests. | Ruslan Ermilov | 1 | -1/+13 | |
| - While here, fixed format specifier for $connection. | |||||
| 2012-02-28 | Fixed spelling in single-line comments. | Ruslan Ermilov | 1 | -9/+9 | |
| 2012-02-27 | Disable symlinks: initialization of the "disable_symlinks" field in | Valentin Bartenev | 1 | -6/+10 | |
| ngx_open_file_info_t moved to a separate function. This is preparation for the "from=" parameter implementation of the "disable_symlinks" directive. | |||||
| 2012-02-13 | Support for disable_symlinks in various modules. | Andrey Belov | 1 | -2/+8 | |
| 2012-02-13 | Time parsing cleanup. | Maxim Dounin | 1 | -2/+2 | |
| Nuke NGX_PARSE_LARGE_TIME, it's not used since 0.6.30. The only error ngx_parse_time() can currently return is NGX_ERROR, check it explicitly and make sure to cast it to appropriate type (either time_t or ngx_msec_t) to avoid signedness warnings on platforms with unsigned time_t (notably QNX). | |||||
| 2012-01-18 | Copyright updated. | Maxim Konovalov | 1 | -0/+1 | |
| 2011-12-06 | - Improved error message when parsing of the "buffer" parameter of the | Ruslan Ermilov | 1 | -1/+7 | |
| "access_log" directive fails. - Added a warning if "log_format" is used in contexts other than "http". | |||||
| 2011-10-11 | Improved access log escaping to better protect other software. | Maxim Dounin | 1 | -5/+5 | |
| Some character sets (notably ISO-8859-1) have C1 control characters in upper half, make sure to escape them. Reported by Jesus Olmos Gonzalez. | |||||
| 2011-09-19 | Replaced "can not" with "cannot" and "could not" in a bunch of places. | Ruslan Ermilov | 1 | -1/+1 | |
| Fixed nearby grammar errors. | |||||
| 2011-08-03 | removal of error message about %name log_format parameters, | Igor Sysoev | 1 | -19/+0 | |
| they have been deleted long ago in 0.5.0-RELEASE | |||||
| 2011-03-16 | $time_iso8601 log variable | Igor Sysoev | 1 | -0/+10 | |
| patch by Michael Lustfield | |||||
| 2010-05-14 | ngx_str_set() and ngx_str_null() | Igor Sysoev | 1 | -4/+2 | |
| 2010-05-14 | use ngx_min() and ngx_max() | Igor Sysoev | 1 | -1/+1 | |
| 2009-11-29 | log proxied HTTP/0.9 responses status as "009" | Igor Sysoev | 1 | -2/+19 | |
| 2009-11-02 | optimize some cycles: | Igor Sysoev | 1 | -3/+5 | |
| *) delete surplus variable; *) on i386/amd64 "while (n) / n--" is smaller than "while (n--)", because the platforms have no postfix operations | |||||
| 2009-09-11 | style fix | Igor Sysoev | 1 | -1/+1 | |
| 2009-08-23 | strict testing "access_log off" | Igor Sysoev | 1 | -1/+7 | |
| 2009-06-02 | return NULL instead of NGX_CONF_ERROR on a create conf failure | Igor Sysoev | 1 | -5/+5 | |
| 2009-04-27 | *) of.test_only to not open file if only stat() is enough | Igor Sysoev | 1 | -1/+3 | |
| *) of.failed to return exact name of failed syscall | |||||
| 2009-02-24 | small optimization: " == NGX_ERROR" > " != NGX_OK" | Igor Sysoev | 1 | -1/+1 | |
| 2008-10-16 | NGX_OPEN_FILE_DIRECTIO_OFF | Igor Sysoev | 1 | -1/+1 | |
| 2008-09-27 | *) log_subrequest | Igor Sysoev | 1 | -12/+33 | |
| *) flush variables in access log | |||||
| 2008-09-12 | disable directio for access_log with variables | Igor Sysoev | 1 | -0/+1 | |
| 2008-09-05 | remove unused #include's | Igor Sysoev | 1 | -1/+0 | |
| 2008-07-07 | always test root existence for access_log with variables | Igor Sysoev | 1 | -4/+19 | |
| 2008-07-01 | NULL script in default access_log | Igor Sysoev | 1 | -0/+1 | |
| 2008-06-30 | fix variable access_log merging | Igor Sysoev | 1 | -1/+2 | |
| 2008-06-30 | fix error message | Igor Sysoev | 1 | -1/+2 | |
| 2008-06-30 | variables in access_log | Igor Sysoev | 1 | -21/+285 | |
| 2008-06-17 | *) back out r2040 | Igor Sysoev | 1 | -2/+2 | |
| *) refactor ngx_palloc() *) introduce ngx_pnalloc() *) additional pool blocks have smaller header | |||||
| 2008-05-26 | fix error log message | Igor Sysoev | 1 | -1/+4 | |
| 2008-05-15 | escape 0x00-0x1f, ", and \ in access log variables | Igor Sysoev | 1 | -2/+71 | |
| 2007-11-15 | 64-bit time_t compatibility | Igor Sysoev | 1 | -1/+2 | |
| 2007-10-09 | allow access_log inside limit_except | Igor Sysoev | 1 | -1/+1 | |
| 2007-07-06 | add comment | Igor Sysoev | 1 | -0/+5 | |
| 2007-04-21 | $request_time has millisecond precision | Igor Sysoev | 1 | -4/+9 | |
| 2007-04-03 | use 60 seconds interval but not 61 seconds | Igor Sysoev | 1 | -2/+2 | |
| 2007-01-24 | fix "access_log off" | Igor Sysoev | 1 | -35/+27 | |
| 2007-01-21 | log a failure of the writing to access_log once per minute | Igor Sysoev | 1 | -15/+56 | |
| 2006-12-12 | fix highly unlikely bug | Igor Sysoev | 1 | -0/+2 | |
| 2006-11-27 | axe old % log format | Igor Sysoev | 1 | -582/+44 | |
