I am not so sure that it is needed, this is from the Apache
2.0 configuration file that came with my RH 8.0 dist.
#
# AddEncoding allows you to have certain browsers (Mosaic/X
2.1+) uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives
have nothing
# to do with the FancyIndexing customization directives above.
#
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
So it would appear that gzip is already supported, does
anyone know how to verify this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
> So it would appear that gzip is already supported, does anyone know how to verify this?
AddEncoding only sets the Content-Encoding header for _files_ that have the specified extension, it does not do
any automatic compression like mod_gzip
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=29401
Nice article here on the subject of upgrading modules from
Apache 1 to 2:
http://www.ddj.com/documents/s=7532/ddj0209d/0209d.htm
Logged In: YES
user_id=632480
I am not so sure that it is needed, this is from the Apache
2.0 configuration file that came with my RH 8.0 dist.
#
# AddEncoding allows you to have certain browsers (Mosaic/X
2.1+) uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives
have nothing
# to do with the FancyIndexing customization directives above.
#
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
So it would appear that gzip is already supported, does
anyone know how to verify this?
Logged In: YES
user_id=365576
> So it would appear that gzip is already supported, does anyone know how to verify this?
AddEncoding only sets the Content-Encoding header for _files_ that have the specified extension, it does not do
any automatic compression like mod_gzip
Logged In: YES
user_id=67054
Apache 2 supports 'mod_deflate':
http://httpd.apache.org/docs-2.0/mod/mod_deflate.html
It seems to be missing some features that are in mod_gzip
(like automatically updating .gz files), but mostly its there.