#! /bin/sh
# mod_deflate config file
#
# TYPE is the type of Apache module: base, extension or experimental
# STATUS is whether the module should be compiled by default or not,
#        and has a value of "on" or "off"
# SHORT is a short description of the module
# DESCRIPTION is a full description of the module

TYPE=extension
STATUS=on
SHORT="Content compression"
DESCRIPTION="Compress content before it is delivered to the client"
ENABLE="--enable-deflate" 
DISABLE="--disable-deflate"
