summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_proxy_module.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2011-09-30Merging r4010, r4065:Igor Sysoev1-2/+1
SSL related fixes: *) Fixing proxy_set_body and proxy_pass_request_body with SSL. Flush flag wasn't set in constructed buffer and this prevented any data from being actually sent to upstream due to SSL buffering. Make sure we always set flush in the last buffer we are going to sent. See here for report: http://nginx.org/pipermail/nginx-ru/2011-June/041552.html *) Proper SSL shutdown handling. If connection has unsent alerts, SSL_shutdown() tries to send them even if SSL_set_shutdown(SSL_RECEIVED_SHUTDOWN|SSL_SENT_SHUTDOWN) was used. This can be prevented by SSL_set_quiet_shutdown(). SSL_set_shutdown() is required nevertheless to preserve session.
2011-08-29Merge of r3964, r3977, r3978:Igor Sysoev1-4/+8
Proxy related fixes: *) finalizing with rc == 0 in unbuffered proxy mode caused nginx to wait for another send_timeout before actually closing client's connection if client timed out while still talking to upstream server *) update r3945 with more descriptive error message *) test length of proxy_pass with variables; patch by Lanshun Zhou
2011-02-17always test proxy_redirect with slash, this fixes a case when nginx usesIgor Sysoev1-4/+30
proxy_pass "http://www", upstream redirects to "http://www.host/uri", and nginx rewrites it as ".host/uri" patch by Maxim Dounin
2010-08-03*) make code consistent to fastcgi, etcIgor Sysoev1-6/+5
*) remove STUB comment
2010-08-03use NULL instead of 0Igor Sysoev1-1/+1
2010-08-03inherit proxy_pass, fastcgi_pass, uwsgi_pass, scgi_pass insideIgor Sysoev1-0/+8
a limit_except block if no handler was defined for the block
2010-08-02fix directive typeIgor Sysoev1-4/+4
2010-07-19add warnings for proxy_no_cache and fastcgi_no_cacheIgor Sysoev1-0/+6
2010-07-19proxy_cache_pass, fastcgi_cache_bypass, uwsgi_cache_bypass, scgi_cache_bypassIgor Sysoev1-0/+11
2010-07-14use ngx_http_test_predicates(), ngx_http_set_predicate_slot()Igor Sysoev1-1/+1
delete ngx_http_cache(), ngx_http_no_cache_set_slot()
2010-07-02do not use a cache headers set to hideIgor Sysoev1-27/+1
2010-07-02use shared ngx_http_upstream_ignore_headers_masks[]Igor Sysoev1-10/+1
2010-06-15fix r3628Igor Sysoev1-3/+0
2010-06-15make code more obviuosIgor Sysoev1-5/+6
2010-06-15use ngx_http_parse_status_line()Igor Sysoev1-228/+13
2010-06-15allow spaces in URIIgor Sysoev1-1/+1
2010-06-07delete useless codeIgor Sysoev1-6/+2
2010-06-07fix rewritten Refresh header lengthIgor Sysoev1-2/+2
2010-06-03use local headers_names array instead of stored in configurationIgor Sysoev1-12/+6
and allocate its elements from temporary pool
2010-05-24proxy_no_cache and fastcgi_no_cacheIgor Sysoev1-0/+11
2010-05-20delete warnings of proxy_upstream_max_fails, proxy_upstream_fail_timeout,Igor Sysoev1-45/+0
fastcgi_upstream_max_fails, fastcgi_upstream_fail_timeout, memcached_upstream_max_fails, and memcached_upstream_fail_timeout directives obsolete since 0.5.0 version
2010-05-14ngx_str_set() and ngx_str_null()Igor Sysoev1-24/+12
2010-03-25reset a parsing state to parse correctly an upstream response,Igor Sysoev1-0/+2
if 400 or 414 response has been redirected to upstream
2010-03-10"proxy_redirect default" may not be used if a proxy_pass uses variablesIgor Sysoev1-0/+7
2010-03-10fix proxy_redirect name in error messageIgor Sysoev1-2/+2
2009-12-23fix typoIgor Sysoev1-1/+1
2009-12-22fix the "If-None-Match" header nameIgor Sysoev1-1/+1
2009-11-29log proxied HTTP/0.9 responses status as "009"Igor Sysoev1-2/+0
2009-11-15allow "proxy_pass http://$backend" without URI partIgor Sysoev1-9/+14
2009-11-02proxy_bind, fastcgi_bind, and memcached_bindIgor Sysoev1-0/+7
2009-07-27ngx_http_upstream_create() to cleanup the previous upstream afterIgor Sysoev1-10/+3
internal redirect
2009-07-20do auto redirect for proxy_pass/fastcgi_pass with variablesIgor Sysoev1-8/+6
2009-06-15fix building --without-http-cache, broken in r2930Igor Sysoev1-1/+4
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 Sysoev1-0/+1
2009-06-02return NULL instead of NGX_CONF_ERROR on a create conf failureIgor Sysoev1-1/+1
2009-05-28report about proxy/fastcgi_store and proxy/fastcgi_cache incompatibilityIgor Sysoev1-4/+18
2009-05-28style fixIgor Sysoev1-2/+3
2009-05-19proxy_cache_methods and fastcgi_cache_methodsIgor Sysoev1-1/+15
2009-04-30proxy_ignore_headers and fastcgi_ignore_headersIgor Sysoev1-0/+22
2009-04-30*) check a proxy_redirect single parameterIgor Sysoev1-5/+21
*) warn about "proxy_redirect false"
2009-04-24merge SSL context inside "if" blockIgor Sysoev1-0/+6
2009-04-16move zone name from ngx_shm_zone_t to ngx_shm_t to use Win32 shared memoryIgor Sysoev1-1/+1
2009-04-15hide cacheable Set-Cookie and P3P response headersIgor Sysoev1-5/+30
2009-04-15do not pass if-... headers for cacheable responsesIgor Sysoev1-2/+31
2009-04-06proxy_cache_keyIgor Sysoev1-0/+54
2009-03-24unlink proxy_cache and proxy_cache_validIgor Sysoev1-4/+0
2009-03-23fix the previous commitIgor Sysoev1-1/+1
2009-03-23axe old definition fieldsIgor Sysoev1-2/+2
2009-03-23a prelimiary proxy cache supportIgor Sysoev1-85/+359