Tagged Questions
1
vote
2answers
44 views
How to enable gzip for files not on your server?
I'm running a gtmetrix.com report against my site. I get an F(41) for gzip compression. I don't own the two problem files mentioned for this penality.
One file is a CSS on Mailchimp's server. Another ...
0
votes
2answers
73 views
Gzip compression with nginx
In my nginx.conf I have:
gzip on;
gzip_static on;
gzip_buffers 16 8k;
gzip_comp_level 9;
gzip_http_version 1.0;
gzip_min_length 1000;
gzip_types text/plain text/css ...
1
vote
1answer
62 views
How is Apache 1.3 compressing?
More specifically, I would like suggestions as to how my server is encoding in gzip compressed format. We have once OC4J container that serves gzip transfer encoding, and others do not. Trying to ...
1
vote
1answer
116 views
Varnish 3 performs gunzip even though entire pipeline is gzipped
I'm refactoring my Varnish VCL and can't figure out this one thing.
Varnish 3.0 natively supports gzipped content, and it essentially seems to do the right thing. See also: ...
3
votes
1answer
474 views
IIS 7.5 ignoring HttpCompression settings in web.config
I'm trying to enable dynamic compression for the mime type application/json.
In applicationHost.config, I've made the following change:
<section name="httpCompression" ...
2
votes
1answer
1k views
Enabling HTTP Compression in WebSphere Application Server 7
I know the correct way of enabling gzip HTTP Compression for a WebSphere Application Server is to activate and configure the mod_gzip module in the IBM HTTP Server connected/installed in this ...
0
votes
1answer
197 views
gzip, deflate are not showing while accessing from a proxy
We enabled gzip and deflate in our local server and it shows correctly in phpinfo like shown below
HTTP_ACCEPT_ENCODING gzip,deflate,sdch
We installed the same in our client's server and there was ...
0
votes
1answer
948 views
Apache mod_deflate enable?
I'm using the follow code in .htaccess. It works nicely in localhost, however in production server i'm having troubles with gzip compression.
AddOutputFilterByType DEFLATE text/css text/html ...
1
vote
1answer
2k views
How to change the HTTP GZIP Compression Level for Dynamic Content in IIS7?
I would like to change the HTTP GZIP compression level in IIS7 from 0 to 4 as mentioned in these articles:
http://weblogs.asp.net/owscott/archive/2009/02/22/iis-7-compression-good-bad-how-much.aspx
...
3
votes
2answers
95 views
enabled gzip — running out of threads
I enabled gzip in apache2 and started load testing -- I am seeing a lot of keep alives state busy state -- 95% of the web server worker threads are being used at any given time
While CPU is ok, I am ...
3
votes
3answers
3k views
Getting HTTP Compression (GZip) to work with URL Routing on IIS 6
I haven't seen any questions specifically addressing this specific issue.
When URL Routing is used, The Request goes into IIS and then is routed to the Aspx Page. For example, a site: ...