Skip to content

Commit

Permalink
Content-Length header field fix.
Browse files Browse the repository at this point in the history
For successful reusing of keepalive connections
between nginx and Apache, mod_aclr2 should return
Content-Length header field.
  • Loading branch information
defanator committed Feb 8, 2012
1 parent 6859d6b commit 04e37cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod_aclr2.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ aclr_handler(request_rec *r)

apr_table_set(r->headers_out, xa_redir_name, iredirect);

r->header_only = 1;
r->header_only = 0;

ap_update_mtime(r, r->finfo.mtime);

Expand Down

0 comments on commit 04e37cf

Please sign in to comment.