comparison src/http/ngx_http_request.h @ 294:27d9d1f26b38 NGINX_0_5_17

nginx 0.5.17 *) Change: now nginx always returns the 405 status for the TRACE method. *) Feature: now nginx supports the "include" directive inside the "types" block. *) Bugfix: the $document_root variable usage in the "root" and "alias" directives is disabled: this caused recursive stack overflow. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive. *) Bugfix: in some cases non-cachable variables (such as $uri variable) returned old cached value.
author Igor Sysoev <http://sysoev.ru>
date Mon, 02 Apr 2007 00:00:00 +0400
parents 704622b2528a
children 2ceaee987f37
comparison
equal deleted inserted replaced
293:30378812e3af 294:27d9d1f26b38
35 #define NGX_HTTP_OPTIONS 0x0200 35 #define NGX_HTTP_OPTIONS 0x0200
36 #define NGX_HTTP_PROPFIND 0x0400 36 #define NGX_HTTP_PROPFIND 0x0400
37 #define NGX_HTTP_PROPPATCH 0x0800 37 #define NGX_HTTP_PROPPATCH 0x0800
38 #define NGX_HTTP_LOCK 0x1000 38 #define NGX_HTTP_LOCK 0x1000
39 #define NGX_HTTP_UNLOCK 0x2000 39 #define NGX_HTTP_UNLOCK 0x2000
40 #define NGX_HTTP_TRACE 0x4000
40 41
41 #define NGX_HTTP_CONNECTION_CLOSE 1 42 #define NGX_HTTP_CONNECTION_CLOSE 1
42 #define NGX_HTTP_CONNECTION_KEEP_ALIVE 2 43 #define NGX_HTTP_CONNECTION_KEEP_ALIVE 2
43 44
44 45