summaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2011-03-15 18:52:39 +0100
committersimonbrandhof <simon.brandhof@gmail.com>2011-03-15 18:52:39 +0100
commit1dc4a0e9e0d670381be01d1edce0596a66f62c21 (patch)
treeac7398858c45780e747ebae7d5a2002c264645b1 /sonar-server
parent44c499e6b2186b16ff1aa60ad4c9e22f7b0c64fa (diff)
downloadsonarqube-1dc4a0e9e0d670381be01d1edce0596a66f62c21.tar.gz
sonarqube-1dc4a0e9e0d670381be01d1edce0596a66f62c21.zip
SONAR-2277 Re-activate GZIP compression of HTTP responses for IE6
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/web.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/web.xml b/sonar-server/src/main/webapp/WEB-INF/web.xml
index 186d4dde3ef..cdc3a9d3ca8 100644
--- a/sonar-server/src/main/webapp/WEB-INF/web.xml
+++ b/sonar-server/src/main/webapp/WEB-INF/web.xml
@@ -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>