[Pkg-apache-commits] r920 - in /trunk/apache2: changelog config-dir/mods-available/deflate.conf

sf at alioth.debian.org sf at alioth.debian.org
Sun May 17 08:16:44 UTC 2009


Author: sf
Date: Sun May 17 08:16:44 2009
New Revision: 920

URL: http://svn.debian.org/wsvn/pkg-apache/?sc=1&rev=920
Log:
Compress some more mime types with mod_deflate by default

Modified:
    trunk/apache2/changelog
    trunk/apache2/config-dir/mods-available/deflate.conf

Modified: trunk/apache2/changelog
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apache2/changelog?rev=920&op=diff
==============================================================================
--- trunk/apache2/changelog (original)
+++ trunk/apache2/changelog Sun May 17 08:16:44 2009
@@ -5,6 +5,9 @@
 
   [ Stefan Fritsch ]
   * Disable TRACE method by default (closes: #492130).
+  * Compress some more mime types with mod_deflate by default. This may cause
+    problems with MSIE 6, but that browser should now be considered obsolete.
+    Closes: #397526, #521209
   * Allow apache2-mpm-itk as alternate dependency in apache2 meta package
     (closes: #527225).
   * Fix some misuse of command substitution in the init script. Thanks to

Modified: trunk/apache2/config-dir/mods-available/deflate.conf
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apache2/config-dir/mods-available/deflate.conf?rev=920&op=diff
==============================================================================
--- trunk/apache2/config-dir/mods-available/deflate.conf (original)
+++ trunk/apache2/config-dir/mods-available/deflate.conf Sun May 17 08:16:44 2009
@@ -1,3 +1,9 @@
 <IfModule mod_deflate.c>
+          # these are known to be safe with MSIE 6
           AddOutputFilterByType DEFLATE text/html text/plain text/xml
+
+          # everything else may cause problems with MSIE 6
+          AddOutputFilterByType DEFLATE text/css
+          AddOutputFilterByType DEFLATE application/x-javascript application/javascript application/ecmascript
+          AddOutputFilterByType DEFLATE application/rss+xml
 </IfModule>




More information about the Pkg-apache-commits mailing list