03.10
apache
saved
leveille
Note
Steps to enable mod_deflate (deflate module is used on apache 2) vary by apache flavor (for instance, Solaris 10 is a beatch)
Steps to enable mod_deflate (deflate module is used on apache 2) vary by apache flavor (for instance, Solaris 10 is a beatch)
- #httpd.conf
- #Load mod_deflate
- LoadModule deflate_module modules/mod_deflate.so
- #most httpd.conf files will have a section where the default MIME type is set
- #find this section and look for the mime_module check
- <IfModule mime_module>
- <IfModule deflate_module>
- #specify types to gzip
- AddOutputFilterByType DEFLATE text/html text/plain text/css application/x-javascript
- </IfModule
- </IfModule>
Parsed in 0.005 seconds, using GeSHi 1.0.7.14