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

Modify this Paste