How do I enable HTTP compression in FB7 for Linux? - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com 2013-05-24T11:28:28Z http://fogbugz.stackexchange.com/feeds/question/1863 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://fogbugz.stackexchange.com/questions/1863/how-do-i-enable-http-compression-in-fb7-for-linux How do I enable HTTP compression in FB7 for Linux? FogBugz FAQ 2010-02-09T19:13:19Z 2010-05-17T15:39:07Z <p>I'd like to enable HTTP compression for my Linux install.</p> http://fogbugz.stackexchange.com/questions/1863/how-do-i-enable-http-compression-in-fb7-for-linux/1864#1864 Answer by Rich Armstrong for How do I enable HTTP compression in FB7 for Linux? Rich Armstrong 2010-02-09T19:14:05Z 2010-02-09T19:14:05Z <p>For right now, we don't support compression. The apache we're shipping doesn't include mod_gzip or deflate.</p> <p>Somebody could configure the system apache I think, provided they have the modules installed, but we haven't gone down this road yet.</p> http://fogbugz.stackexchange.com/questions/1863/how-do-i-enable-http-compression-in-fb7-for-linux/1882#1882 Answer by Ted for How do I enable HTTP compression in FB7 for Linux? Ted 2010-02-09T21:57:34Z 2010-02-09T21:57:34Z <p>Using mod_deflate which is shipped by default appears to work. For example, on an Ubuntu box that's handy, I linked deflate from /etc/apache2/mods-available to mods-enabled. With no other changes, all the HTML pages are compressed.</p> <p>This only applies if you're going through the proxy. At this time, we aren't shipping a mod_deflate for use with the apache that's actually running FogBugz.</p> http://fogbugz.stackexchange.com/questions/1863/how-do-i-enable-http-compression-in-fb7-for-linux/1933#1933 Answer by Andrew Lyric for How do I enable HTTP compression in FB7 for Linux? Andrew Lyric 2010-02-11T19:13:30Z 2010-02-11T19:13:30Z <p>Using the proxy server with the compression settings I got from <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Fdeflate.html" rel="nofollow">http://httpd.apache.org/docs/2.2/mod/mod_deflate.html</a> did not work, but I just changed it to the following and it's working well now. (These settings worked fine with the FogBugz v6.)</p> <pre><code>AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript </code></pre>