| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2011-01-20 | server_name $hostname | Igor Sysoev | 1 | -1/+7 | |
| 2011-01-20 | style fix: remove trailing spaces | Igor Sysoev | 1 | -2/+2 | |
| 2011-01-20 | move setting conf->server_name in merge phase | Igor Sysoev | 1 | -25/+25 | |
| 2011-01-20 | fix large stderr handling without http cache | Igor Sysoev | 1 | -1/+2 | |
| patch by Maxim Dounin the bug has been introduced in r3461 | |||||
| 2011-01-20 | introduce 494 code "Request Header Too Large" | Igor Sysoev | 3 | -3/+22 | |
| 2010-12-15 | use boolean expression instead of "if" | Igor Sysoev | 1 | -12/+2 | |
| 2010-12-14 | rename NGX_HTTP_OWN_CODES to NGX_HTTP_NGINX_CODES | Igor Sysoev | 2 | -5/+5 | |
| 2010-12-14 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-12-12 | always run regex in server_name to get captures for IPv6 addresses, | Igor Sysoev | 1 | -1/+5 | |
| the same fix for IPv4 addresses has been made in r2584 | |||||
| 2010-12-12 | test wildcard tail hash existance for IPv6 addresses, | Igor Sysoev | 1 | -2/+2 | |
| the same fix for IPv4 addresses has been made in r2581 | |||||
| 2010-12-12 | style fix | Igor Sysoev | 1 | -1/+1 | |
| 2010-12-06 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-12-06 | "If-Unmodified-Since" support | Igor Sysoev | 3 | -5/+45 | |
| 2010-11-30 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-11-29 | fix comment | Igor Sysoev | 1 | -1/+1 | |
| 2010-11-29 | revert processing NGX_OK in rewrite phase changed in r3798, | Igor Sysoev | 1 | -5/+0 | |
| this broke "return 204" and "return code text" | |||||
| 2010-11-29 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-11-29 | revert processing NGX_OK and NGX_DONE in rewrite phase changed in r3634 | Igor Sysoev | 1 | -1/+10 | |
| 2010-11-26 | style fix | Igor Sysoev | 1 | -1/+1 | |
| 2010-11-26 | fix building by icc8 | Igor Sysoev | 1 | -7/+0 | |
| 2010-11-26 | keepalive_disable | Igor Sysoev | 2 | -20/+47 | |
| 2010-11-26 | allow variable as "map" value | Igor Sysoev | 1 | -6/+63 | |
| 2010-11-25 | use "\" to escape "default", "include", and "hostnames" values instead of "!" | Igor Sysoev | 1 | -1/+1 | |
| 2010-11-25 | allow empty value as "map" parameter | Igor Sysoev | 1 | -10/+0 | |
| 2010-11-25 | allow expressions in the first "map" parameter | Igor Sysoev | 1 | -31/+24 | |
| 2010-11-24 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-10-18 | allow override redirect status in error_page | Igor Sysoev | 2 | -9/+7 | |
| 2010-10-14 | change order of limit_req lookup result processing | Igor Sysoev | 1 | -51/+48 | |
| 2010-10-13 | an excess was logged as 0.000 if requests were limited without delay: | Igor Sysoev | 1 | -18/+8 | |
| *) use a real excess value instead of non-updated limit_req rbtree node field, *) move inactivity queue handling inside ngx_http_limit_req_lookup() since the node is not required outside the lookup function; the bug has been introduced in r3184 | |||||
| 2010-10-12 | always update an aio_senfile connection flag accodring to a current | Igor Sysoev | 1 | -2/+4 | |
| location configuration, this clears the flag for requests passed via a keep-alive connection | |||||
| 2010-10-12 | file AIO read may be posted inside loop | Igor Sysoev | 1 | -0/+1 | |
| 2010-10-11 | add default listen port at the end of server block parsing instead of | Igor Sysoev | 1 | -33/+33 | |
| merge phase: otherwise the first server without an listen directive did not become the default server if there was no explicit default server; the bug has been introduced in r3218 | |||||
| 2010-10-08 | fix testing, the bug has been introduced in r3218 | Igor Sysoev | 1 | -2/+2 | |
| 2010-10-04 | gzip_disable degradation | Igor Sysoev | 3 | -8/+59 | |
| 2010-10-04 | ngx_http_degraded() | Igor Sysoev | 2 | -11/+36 | |
| 2010-10-04 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-09-28 | nginx uses SSL mode for a listen socket with any option set, | Igor Sysoev | 1 | -1/+1 | |
| the bug has been introduced in r3765 | |||||
| 2010-09-28 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-09-27 | allow duplicate listen ssl options | Igor Sysoev | 2 | -1/+10 | |
| 2010-09-13 | fix typo | Igor Sysoev | 3 | -4/+4 | |
| 2010-09-06 | discard "secure_link_expires on|off" | Igor Sysoev | 1 | -25/+11 | |
| 2010-09-06 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-09-02 | new ngx_http_secure_link_module with secure_link, secure_link_md5, and | Igor Sysoev | 3 | -12/+226 | |
| secure_link_expires | |||||
| 2010-09-02 | fix race condition if during reconfiguration two cache managers try | Igor Sysoev | 2 | -1/+10 | |
| to delete old inactive entries: one of them removes a entry just locked by other manager from the queue and the rbtree as long inactive entry, causes the latter manager to segfault leaving cache mutex locked, the bug has been introduced in r3727 | |||||
| 2010-09-02 | gzip_disable msie6 ignored other patterns | Igor Sysoev | 1 | -1/+1 | |
| 2010-09-02 | gzip_disable compiled always the first pattern only | Igor Sysoev | 1 | -1/+1 | |
| 2010-09-02 | gzip_disable msie6 did not inherited if nginx was built without PCRE | Igor Sysoev | 1 | -1/+1 | |
| 2010-08-26 | if a location is specified by regex, then always compile an "alias", | Igor Sysoev | 1 | -1/+7 | |
| even into one static string script: this elimates testing this too specific case inside ngx_http_map_uri_to_path() | |||||
| 2010-08-25 | bump version | Igor Sysoev | 1 | -1/+1 | |
| 2010-08-06 | image_filter_jpeg_quality supports variables | Igor Sysoev | 1 | -6/+67 | |
