summaryrefslogtreecommitdiffhomepage
path: root/src/http (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2009-06-22merge r2954:Igor Sysoev1-2/+3
fix segfault if there is error_page 401, proxy_intercept_errors is on and backend does not return "WWW-Authenticate" header
2009-06-22merge r2952:Igor Sysoev1-12/+12
ignore ngx_atomic_fetch_add() result this fixes building at least by gcc 4.2.1 on Mac OS X 10.6
2009-06-22merge r2950, r2951:Igor Sysoev2-2/+8
cache related fixes: *) fix building --without-http-cache, broken in r2945 *) fix ./configure error message
2009-06-22bump versionIgor Sysoev1-1/+1
2009-06-15merge r2895, r2896, r2926, r2927, r2928, r2930, and r2936:Igor Sysoev6-36/+89
various proxy/fastcgi cache features and fixes: *) report about proxy/fastcgi_store and proxy/fastcgi_cache incompatibility *) delete useless r->cache->uses *) proxy_cache_use_stale/fastcgi_cache_use_stale updating *) inherit proxy_set_header, proxy_hide_header, and fastcgi_hide_header only if cache settings are similar *) add response file uniq while loading cold cache on demand
2009-06-15merge r2919:Igor Sysoev1-4/+5
test GIF87a
2009-06-15merge r2900:Igor Sysoev1-4/+5
fix XSLT filter in SSI subrequests
2009-06-15merge r2889, r2918, and r2921:Igor Sysoev3-2/+20
fix a pool growing and CPU usage for multi-requests keepalive connections: *) keepalive_requests *) try to reuse last 4 free large allocation links *) do not test a pool block space if we can not allocated from the block 4 times
2009-06-15bump versionIgor Sysoev1-1/+1
2009-05-25fix socket leak introduced in r2378Igor Sysoev1-0/+5
2009-05-25reset content_type hash value, this fixes a bug when XSLT responsesIgor Sysoev5-0/+10
could not be processed by SSI, charset, and gzip filters
2009-05-25light optimization of ngx_http_test_content_type()Igor Sysoev1-12/+12
2009-05-22fix segfault introduced in r2845Igor Sysoev1-1/+4
2009-05-22add charset for ngx_http_gzip_static_module responsesIgor Sysoev3-1/+4
2009-05-19proxy_cache_methods and fastcgi_cache_methodsIgor Sysoev4-4/+44
2009-05-19use already given variableIgor Sysoev1-2/+2
2009-05-18bump versionIgor Sysoev1-1/+1
2009-05-18use ngx_connection_local_sockaddr() instead of ngx_http_server_addr()Igor Sysoev6-76/+17
2009-05-18delete unneeded castIgor Sysoev1-2/+2
2009-05-17update comments missed in r2513Igor Sysoev1-3/+3
2009-05-17update variable name missed in r2513Igor Sysoev1-4/+4
2009-05-17fix colon in file name for ngx_http_autoindex_moduleIgor Sysoev1-3/+13
2009-05-16image_filter_jpeg_qualityIgor Sysoev1-3/+17
2009-05-14style fixIgor Sysoev1-1/+3
2009-05-14client_body_in_single_bufferIgor Sysoev2-0/+14
2009-05-14$request_body variableIgor Sysoev1-0/+56
2009-05-14update two previous commits againIgor Sysoev1-1/+1
2009-05-14update the previous commitIgor Sysoev1-1/+1
2009-05-14fix client_body_in_file_only typeIgor Sysoev2-3/+3
2009-05-12bump versionIgor Sysoev1-1/+1
2009-05-12test finalized image filter context before testing image_filter offIgor Sysoev1-7/+7
this fixes SIGFPE if image filter errors are passed to named location
2009-05-11bump versionIgor Sysoev1-1/+1
2009-05-08fix building --without-http-cacheIgor Sysoev1-1/+1
the bug had been appeared in r2806
2009-05-08fix the previous commitIgor Sysoev1-0/+2
2009-05-08allow to pass image filter errors via the same location where the filter is setIgor Sysoev4-5/+25
2009-05-08test already destroyed requestIgor Sysoev1-3/+11
2009-05-08handle big responses for "size" and "test" image_filtersIgor Sysoev4-12/+54
2009-05-06bump versionIgor Sysoev1-1/+1
2009-05-06delete level event of appropriate type, this should fix select()'s EBADF,Igor Sysoev1-6/+17
WSAENOTSOCK, and "select ready != events" alerts
2009-05-05ngx_create_listening()Igor Sysoev1-41/+1
2009-05-05reinit proxy/fastcgi header parser before ngx_http_upstream_cache_send()Igor Sysoev1-4/+17
2009-05-05proxy/fastcgi_cache_use_stale http_50x did not workIgor Sysoev1-8/+1
2009-05-04fix building ngx_http_image_filter_module on 64-bit platformsIgor Sysoev1-1/+1
2009-05-01use off_t in $r->sendfile(), this allows to use 64-bit off_t on platformsIgor Sysoev1-1/+1
where IV is long: *) on 64-bit platforms, *) and on 32-bit platforms if perl was built with -Duse64bitint
2009-05-01bump versionIgor Sysoev1-1/+1
2009-05-01ngx_http_image_filter_moduleIgor Sysoev1-0/+1026
2009-05-01ngx_http_filter_finalize_request() and ngx_http_clean_header()Igor Sysoev3-19/+40
2009-04-30proxy_ignore_headers and fastcgi_ignore_headersIgor Sysoev4-12/+84
2009-04-30*) refactor error_log processing: listen socket log might inherit built-inIgor Sysoev4-16/+25
error_log with zero level, and r2447, r2466, r2467 were not enough *) remove bogus "stderr" level *) some functions and fields renames
2009-04-30*) check a proxy_redirect single parameterIgor Sysoev1-5/+21
*) warn about "proxy_redirect false"