Index: modules/cache/cache_util.c =================================================================== --- modules/cache/cache_util.c (revision 726763) +++ modules/cache/cache_util.c (working copy) @@ -668,5 +668,11 @@ ap_make_content_type(r, r->content_type)); } + if (!apr_table_get(headers_out, "Content-Encoding") + && r->content_encoding) { + apr_table_setn(headers_out, "Content-Encoding", + r->content_encoding); + } + return headers_out; }