summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2009-07-09style fixIgor Sysoev1-2/+2
2009-07-09fix client write event handling in ngx_http_limit_req_moduleIgor Sysoev1-0/+15
2009-07-09bump versionIgor Sysoev1-1/+1
2009-06-22bump versionIgor Sysoev1-1/+1
2009-06-15fix building --without-http-cache, broken in r2930Igor Sysoev1-1/+4
2009-06-15bump versionIgor Sysoev1-1/+1
2009-06-10bump versionIgor Sysoev1-1/+1
2009-06-08inherit proxy_set_header, proxy_hide_header, and fastcgi_hide_headerIgor Sysoev1-1/+3
only if cache settings are similar
2009-06-06proxy_cache_use_stale/fastcgi_cache_use_stale updatingIgor Sysoev2-0/+2
2009-06-05test GIF87aIgor Sysoev1-4/+5
2009-06-03bump versionIgor Sysoev1-1/+1
2009-06-02return NULL instead of NGX_CONF_ERROR on a create conf failureIgor Sysoev30-42/+42
2009-05-28fix XSLT filter in SSI subrequestsIgor Sysoev1-4/+5
2009-05-28report about proxy/fastcgi_store and proxy/fastcgi_cache incompatibilityIgor Sysoev2-8/+36
2009-05-28style fixIgor Sysoev2-4/+6
2009-05-26do not set charset for subrequestsIgor Sysoev1-4/+5
2009-05-25fix the previous commitIgor Sysoev1-1/+3
2009-05-25refactor ngx_http_charset_header_filter()Igor Sysoev2-161/+236
2009-05-25bump versionIgor Sysoev1-1/+1
2009-05-25reset content_type hash value, this fixes a bug when XSLT responsesIgor Sysoev3-0/+7
could not be processed by SSI, charset, and gzip filters
2009-05-22add charset for ngx_http_gzip_static_module responsesIgor Sysoev2-1/+3
2009-05-19proxy_cache_methods and fastcgi_cache_methodsIgor Sysoev2-2/+30
2009-05-18bump versionIgor Sysoev1-1/+1
2009-05-18use ngx_connection_local_sockaddr() instead of ngx_http_server_addr()Igor Sysoev1-3/+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-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-08allow to pass image filter errors via the same location where the filter is setIgor Sysoev2-2/+12
2009-05-08handle big responses for "size" and "test" image_filtersIgor Sysoev1-11/+37
2009-05-06bump versionIgor Sysoev1-1/+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 Sysoev1-19/+3
2009-04-30proxy_ignore_headers and fastcgi_ignore_headersIgor Sysoev2-0/+44
2009-04-30*) check a proxy_redirect single parameterIgor Sysoev1-5/+21
*) warn about "proxy_redirect false"
2009-04-29uniform ngx_file_info() interface with ngx_fd_info()Igor Sysoev1-4/+4
2009-04-27bump versionIgor Sysoev1-1/+1
2009-04-27*) of.test_only to not open file if only stat() is enoughIgor Sysoev6-17/+21
*) of.failed to return exact name of failed syscall
2009-04-24merge SSL context inside "if" blockIgor Sysoev1-0/+6
2009-04-21fix fastcgi_cache_min_usesIgor Sysoev1-1/+1
2009-04-20bump versionIgor Sysoev1-1/+1
2009-04-18remove TODO commentsIgor Sysoev8-8/+0
2009-04-18support attaching to an existent Win32 shared memoryIgor Sysoev2-39/+52
2009-04-16move zone name from ngx_shm_zone_t to ngx_shm_t to use Win32 shared memoryIgor Sysoev5-12/+16
2009-04-16perl termination fixes:Igor Sysoev1-5/+25
*) master exit hook is run before global pool cleanup, so call PERL_SYS_TERM() after perl_destruct()/perl_free(). This fixes the message panic: MUTEX_LOCK (22) [op.c:352] on some threaded perl builds *) call perl_destruct()/perl_free() before PERL_SYS_TERM() for non-mulitiplicity perl
2009-04-15fix segfault on exit if no http section is defined in confguraiton,Igor Sysoev1-6/+4
the bug has been introduced in r1947