]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2277 Re-activate GZIP compression of HTTP responses for IE6
authorsimonbrandhof <simon.brandhof@gmail.com>
Tue, 15 Mar 2011 17:52:39 +0000 (18:52 +0100)
committersimonbrandhof <simon.brandhof@gmail.com>
Tue, 15 Mar 2011 17:52:39 +0000 (18:52 +0100)
sonar-server/src/main/webapp/WEB-INF/web.xml

index 186d4dde3efbd27c5e0ab380211611660bc5e5f3..cdc3a9d3ca8fad25238cd17bf005bed6d2761857 100644 (file)
@@ -59,7 +59,9 @@
       http://comments.gmane.org/gmane.org.google.gwt/50660
       http://stackoverflow.com/questions/138880/ie6-freezes-due-to-server-configuration/422730#422730
       http://sebduggan.com/posts/ie6-gzip-bug-solved-using-isapi-rewrite
-    -->
+
+      To deactivate GZIP compression for IE6 browsers, the two following properties must be uncommented.
+
     <init-param>
       <param-name>userAgent</param-name>
       <param-value>(?:Mozilla[^\(]*\(compatible;\s*+([^;]*);.*)|(?:.*?([^\s]+/[^\s]+).*)</param-value>
@@ -68,6 +70,8 @@
       <param-name>excludedAgents</param-name>
       <param-value>MSIE 6.0</param-value>
     </init-param>
+
+    -->
   </filter>
   <filter-mapping>
     <filter-name>GZIPFilter</filter-name>