summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_variables.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2009-05-22fix segfault introduced in r2845Igor Sysoev1-1/+4
2009-05-18use ngx_connection_local_sockaddr() instead of ngx_http_server_addr()Igor Sysoev1-2/+2
2009-05-14$request_body variableIgor Sysoev1-0/+56
2009-02-24fix segfault introduced in r2486 in $sent_http_location processingIgor Sysoev1-1/+6
2009-02-24small optimization: " == NGX_ERROR" > " != NGX_OK"Igor Sysoev1-7/+4
2009-02-24axe r->port_textIgor Sysoev1-2/+35
2009-02-21a prelimiary IPv6 support, HTTP listenIgor Sysoev1-19/+55
2009-01-30fix $sent_http_location for local redirectsIgor Sysoev1-0/+25
2008-12-22ngx_http_arg()Igor Sysoev1-40/+12
2008-12-01$cookie_... variable did not for SSI and perlIgor Sysoev1-1/+3
2008-11-22variable value rbtree supportIgor Sysoev1-0/+84
2008-11-12$cookie_... variableIgor Sysoev1-0/+44
2008-09-27$realpath_rootIgor Sysoev1-0/+60
2008-09-15$pidIgor Sysoev1-0/+26
2008-09-05remove unused #include'sIgor Sysoev1-1/+0
2008-08-21*) remove zero termination in ngx_inet_ntop() and ngx_sock_ntop()Igor Sysoev1-1/+1
*) use ngx_snprintf() in ngx_inet_ntop() and ngx_sock_ntop() as they are called just once per connection *) NGX_INET_ADDRSTRLEN
2008-08-04$arg_... variableIgor Sysoev1-0/+74
2008-08-04ngx_strlow()Igor Sysoev1-6/+2
2008-06-17*) back out r2040Igor Sysoev1-9/+9
*) refactor ngx_palloc() *) introduce ngx_pnalloc() *) additional pool blocks have smaller header
2008-05-16$hostname variableIgor Sysoev1-0/+19
2008-05-15*) host in request line has priorityIgor Sysoev1-18/+7
*) allow several Host headers *) validate host
2007-12-30axe useless r->server_nameIgor Sysoev1-4/+27
2007-12-29use ngx_http_server_addr()Igor Sysoev1-17/+7
2007-10-14fix English grammarIgor Sysoev1-44/+44
2007-07-29--sysconfdir=DIRIgor Sysoev1-1/+3
2007-07-29$is_argsIgor Sysoev1-0/+26
2007-07-29allow to set $argsIgor Sysoev1-2/+19
2007-07-22$nginx_versionIgor Sysoev1-0/+20
2007-07-17Sun Studio on sparc uses different bit orderIgor Sysoev1-1/+1
2007-05-02fix segfault introduced in r1190Igor Sysoev1-3/+4
2007-04-19$upstream_http_... should be uncacheableIgor Sysoev1-0/+1
2007-04-10$upstream_http_... variablesIgor Sysoev1-3/+19
2007-03-29style fixIgor Sysoev1-1/+1
2007-02-15optimize $http_x_forwarded_forIgor Sysoev1-1/+1
2007-01-07ngx_http_variable_binary_remote_addr()Igor Sysoev1-17/+23
2007-01-07$binary_remote_addrIgor Sysoev1-5/+24
2006-12-15fix segfault when $host is used andIgor Sysoev1-1/+5
*) request is "GET http://host" without CR or LF, or timed out *) request is "GET http://host" with a large blank space
2006-11-23use host part in URLIgor Sysoev1-5/+12
2006-10-20NULL is short wayIgor Sysoev1-1/+1
2006-10-20fix segfault if $server_addr failedIgor Sysoev1-1/+1
2006-10-18downgrade gravity of getsockname() errorsIgor Sysoev1-2/+1
2006-10-12remove r->root_lengthIgor Sysoev1-1/+2
2006-10-11variable should not be found if no request body fileIgor Sysoev1-5/+1
2006-10-10$request_body_fileIgor Sysoev1-0/+30
2006-10-05nonexistent $sent_http_content has value of $sent_http_content_length or soIgor Sysoev1-1/+1
2006-10-02nginx-0.4.4-RELEASErelease-0.4.4Igor Sysoev1-2/+2
fix msvc build failure introduced by previous commit
2006-10-02$scheme variableIgor Sysoev1-0/+32
2006-08-09nginx-0.3.57-RELEASE importrelease-0.3.57Igor Sysoev1-6/+27
*) Feature: the $ssl_client_serial variable. *) Bugfix: in the "!-e" operator of the "if" directive. Thanks to Andrian Budanstov. *) Bugfix: while a client certificate verification nginx did not send to a client the required certificates information. *) Bugfix: the $document_root variable did not support the variables in the "root" directive.
2006-07-28nginx-0.3.55-RELEASE importrelease-0.3.55Igor Sysoev1-7/+9
*) Feature: the "stub" parameter in the "include" SSI command. *) Feature: the "block" SSI command. *) Feature: the unicode2nginx script was added to contrib. *) Bugfix: if a "root" was specified by variable only, then the root was relative to a server prefix. *) Bugfix: if the request contained "//" or "/./" and escaped symbols after them, then the proxied request was sent unescaped. *) Bugfix: the $r->headers_in("Cookie") of the ngx_http_perl_module now returns all "Cookie" header lines. *) Bugfix: a segmentation fault occurred if "client_body_in_file_only on" was used and nginx switched to a next upstream. *) Bugfix: on some condition while reconfiguration character codes inside the "charset_map" may be treated invalid; the bug had appeared in 0.3.50.
2006-06-28nginx-0.3.50-RELEASE importrelease-0.3.50Igor Sysoev1-0/+3
*) Change: the "proxy_redirect_errors" and "fastcgi_redirect_errors" directives was renamed to the "proxy_intercept_errors" and "fastcgi_intercept_errors" directives. *) Feature: the ngx_http_charset_module supports the recoding from the single byte encodings to the UTF-8 encoding and back. *) Feature: the "X-Accel-Charset" response header line is supported in proxy and FastCGI mode. *) Bugfix: the "\" escape symbol in the "\"" and "\'" pairs in the SSI command was removed only if the command also has the "$" symbol. *) Bugfix: the "<!--" string might be added on some conditions in the SSI after inclusion. *) Bugfix: if the "Content-Length: 0" header line was in response, then in nonbuffered proxying mode the client connection was not closed.