vote up 6 vote down star
2

I am serving all content through apache with Content-Encoding: zip but that compresses on the fly. A good amount of my content is static files on the disk. I want to gzip the files beforehand rather than compressing them every time they are requested.

This is something that, I believe, mod_gzip did in Apache 1.x automatically, but just having the file with .gz next to it. That's no longer the case with mod_deflate.

flag

I don't think you're going to save much though; with modern web servers, the cost of compressing the content on the fly is negligible. – Aeon Sep 19 '08 at 0:14
I'm running the web server in a Xen VM so I'd like to conserve as much CPU as possible for the other VMs. Also I was able to double the request rate measured with httperf on a pre-compressed 55k file compared to compressing on the fly. – Otto Sep 19 '08 at 23:35

5 Answers

vote up 5 vote down check

This functionality was misplaced in mod_gzip anyway. In Apache 2.x, you do that with content negotiation. Specifically, you need to enable MultiViews with the Options directive and you need to specify your encoding types with the AddEncoding directive.

link|flag
vote up 2 vote down

To answer my own question with the really simple line I was missing in my confiuration:

Options FollowSymLinks MultiViews

I was missing the MultiViews option. It's there in the Ubuntu default web server configuration, so don't be like me and drop it off.

Also I wrote a quick Rake task to compress all the files.

namespace :static do
    desc "Gzip compress the static content so Apache doesn't need to do it on-the-fly."
    task :compress do
    	puts "Gzipping js, html and css files."
    	Dir.glob("#{RAILS_ROOT}/public/**/*.{js,html,css}") do |file|
    		system "gzip -c -9 #{file} > #{file}.gz"
    	end
    end
end
link|flag
vote up 1 vote down

mod_gzip compressed content on the fly as well. You can pre-compress the files by actually logging into your server, and doing it from shell.

cd /var/www/.../data/
for file in *; do
    gzip -c $file > $file.gz;
done;
link|flag
This will remove the original files, which means clients that don't have Aceept-Encoding: gzip won't be serviced. – Otto Sep 18 '08 at 21:22
good point, updated. – Aeon Sep 19 '08 at 0:13
While you're editing, why not add -9 and get the highest compression possible. My 1500 files compressed in 38 seconds, so it's worth doing to save every byte possible in bandwidth and download time. :) (Also wishing I could edit my typo in my previous comment. Ugh) – Otto Sep 19 '08 at 2:42
-9 is the default anyway. – Aristotle Pagaltzis Sep 19 '08 at 12:38
Not according to the man page on my Mac, it says -6 is the default. – Otto Sep 19 '08 at 23:33
vote up 0 vote down

You can use mod_cache to proxy local content in memory or on disk. I don't know if this will work as expected with mod_deflate.

link|flag
vote up 0 vote down

I have an Apache 2 built from source, and I found I had to modify the following in my httpd.conf file:

Add MultiViews to Options:

Options Indexes FollowSymLinks MultiViews

Uncomment AddEncoding:

AddEncoding x-compress .Z
AddEncoding x-gzip .gz .tgz

Comment AddType:

#AddType application/x-compress .Z
#AddType application/x-gzip .gz .tgz
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.