How do I enable HTTP compression in FB7 for Linux? - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com2013-05-24T11:28:28Zhttp://fogbugz.stackexchange.com/feeds/question/1863http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://fogbugz.stackexchange.com/questions/1863/how-do-i-enable-http-compression-in-fb7-for-linuxHow do I enable HTTP compression in FB7 for Linux?FogBugz FAQ2010-02-09T19:13:19Z2010-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#1864Answer by Rich Armstrong for How do I enable HTTP compression in FB7 for Linux?Rich Armstrong2010-02-09T19:14:05Z2010-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#1882Answer by Ted for How do I enable HTTP compression in FB7 for Linux?Ted2010-02-09T21:57:34Z2010-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#1933Answer by Andrew Lyric for How do I enable HTTP compression in FB7 for Linux?Andrew Lyric2010-02-11T19:13:30Z2010-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>