Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Выставленный вручн ую Last-Modified не поддерживается в протокол е
Hello!
On Fri, Oct 03, 2008 at 10:06:43PM +0300, Oleksandr V. Typlyns'kyi wrote:
[...]
Из http/modules/ngx_http_not_modified_filter_module.c:
/*
* I think that the equality of the dates is correcter
*/
if (ims == r->headers_out.last_modified_time) {
r->headers_out.status = NGX_HTTP_NOT_MODIFIED;
r->headers_out.content_type.len = 0;
ngx_http_clear_content_length(r);
ngx_http_clear_accept_ranges(r);
}
Может стоит изменить условие на >= ?
Для заметной части запросов (e.g range-запросов) это просто в
явном виде запрещено RFC 2616 (13.3.3):
% A cache or origin server receiving a conditional request, other than
% a full-body GET request, MUST use the strong comparison function to
% evaluate the condition.
Да и для остальных право не стоит.
Maxim Dounin
|