comparison src/http/modules/ngx_http_dav_module.c @ 278:704622b2528a NGINX_0_5_9

nginx 0.5.9 *) Change: now the ngx_http_memcached_module uses the $memcached_key variable value as a key. *) Feature: the $memcached_key variable. *) Feature: the "clean" parameter in the "client_body_in_file_only" directive. *) Feature: the "env" directive. *) Feature: the "sendfile" directive is available inside the "if" block. *) Feature: now on failure of the writing to access nginx logs a message to error_log, but not more often than once a minute. *) Bugfix: the "access_log off" directive did not always turn off the logging.
author Igor Sysoev <http://sysoev.ru>
date Thu, 25 Jan 2007 00:00:00 +0300
parents c5c2b2883984
children 675a39fd14cd
comparison
equal deleted inserted replaced
277:b3aec7787b8e 278:704622b2528a
133 return NGX_HTTP_BAD_REQUEST; 133 return NGX_HTTP_BAD_REQUEST;
134 } 134 }
135 135
136 r->request_body_in_file_only = 1; 136 r->request_body_in_file_only = 1;
137 r->request_body_in_persistent_file = 1; 137 r->request_body_in_persistent_file = 1;
138 r->request_body_delete_incomplete_file = 1; 138 r->request_body_in_clean_file = 1;
139 r->request_body_file_group_access = 1; 139 r->request_body_file_group_access = 1;
140 r->request_body_file_log_level = 0; 140 r->request_body_file_log_level = 0;
141 141
142 rc = ngx_http_read_client_request_body(r, ngx_http_dav_put_handler); 142 rc = ngx_http_read_client_request_body(r, ngx_http_dav_put_handler);
143 143