The deflate tag has no wiki summary.
0
votes
1answer
39 views
compression mod_deflate is not working on apache2
I have two websites on my apache server. I have already enabled mod headers and deflates. in /etc/apache2/mod-available/deflate.conf i have written:
<IfModule mod_deflate.c>
SetOutputFilter ...
1
vote
3answers
523 views
gzip not working for some files using nginx
Some files are not gzipped on their way to the user browser in our setup.
for example
http://myhostname.com/css/build/20120904-1.css
http://myhostname.com/js/dojo/dn/main.js?20120904-1
...
1
vote
1answer
2k views
Disable deflate compression in nginx SSL
When I'm browsing to my SSL protected site running nginx with Chrome, I see I'm using TLS 1.0, AES_256_CBC with SHA-1, and DHE_RSA as key exchange. That's all good and in conformance with my cipher ...
2
votes
1answer
729 views
Apache mod_deflate not compressing javascript and css files?
"GET /Symfony/web/app.php/app/dashboard HTTP/1.1" 4513/37979 (11%)
"GET /Symfony/web/css/application.css HTTP/1.1" -/- (-%)
"GET /Symfony/web/js/application.js HTTP/1.1" -/- (-%)
"GET ...
2
votes
2answers
620 views
Apache/2.2.20 (Ubuntu 11.10) gzip compression won't work on php pages, content is chunked
I'm running into a problem with a new production server whereto I'm transferring projects. The HTML output of the PHP applications isn't compressed by the Apache mod_deflate module. Other resources, ...
5
votes
2answers
1k views
DEFLATE not working in IE9
I posted this on stack overflow but it was suggested I may have more luck here:
I have not used deflate before to encode web pages so this is new ground for me but when I look at nework traffic in ff ...
0
votes
1answer
132 views
Repeated unsuccessful gzip compression of my website's files
The site in question is
goinnativerecords.com
I've got a basic shared hosting account and my website is a little heavy on the javascript so I decided to compress with gzip.
Contacted my hosting, ...
3
votes
1answer
166 views
Apache logging of deflate
I have a CentOS box running Apache 2.2.3 and compression is working fine on HTTP connections, with the relevant information being logged to a separate deflate log. However, no information is being ...
0
votes
2answers
269 views
Apache deflate not working on debian
I have the deflate module enabled, it shows up in apachectl -t -D DUMP_MODULES, the config files are in the right place and some gzip testing tools say that it is enabled.
The only problem is the ...
1
vote
1answer
648 views
Gzip pre-compression
I'm using mod_deflate to compress my .css and .js files on the fly:
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css ...
3
votes
1answer
456 views
is mod_deflate 's default configuration ok to use in a production setup?
The official documentation for mod_deflate works, and gives me nice results so far on my serveR. Are there any changes anyone suggests for use on a production machine?
...
1
vote
2answers
1k views
Use mod_deflate or gzip for centos5+apache
I'd like to compress the JS and CSS (perhaps also html?) files that I'm sending out. I've read a lot about gzip and mod_deflate but I'm not really sure what's the best to use?
I'm looking for the ...
5
votes
2answers
168 views
mod_deflate Supported Encodings for Compression
It seems to me, that mod_deflate in Apache 2.2 will always return:
Content-Encoding: gzip
and never:
Content-Encoding: deflate
It was explained to me, that although there may be a deflate ...
2
votes
2answers
7k views
Apache - How to disable gzip content encoding (eg DEFLATE) for one set of URLs?
I have a ubuntu apache webserver and I have enabled mod_deflate to gzip all the content. However there's one folder I'd like to disable the mod_deflate for. I was going to do something like this:
...
0
votes
1answer
417 views
Apache output compression working for CSS/JS but not PHP
I have this in my .htaccess:
<IfModule mod_deflate.c>
<FilesMatch "\.(js|css|php)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
Testing files on my site, it seems ...
3
votes
1answer
1k views
Apache mod_deflate not deflatingā¦
I'm having some trouble with mod_deflate⦠Specifically, that it's not actually deflating anything.
I'm running Apache2 and Debian 4. I've a2enmod deflate'd, and put this in ...
4
votes
2answers
4k views
How can I troubleshoot why my IIS7 site is not gzip compressing?
I've got a number of websites on a single IIS7 machine running W2K8.
I'm using Fiddler to help me figure out if something is compressed or not. Nothing is.
So, I've googled for a few things and ...
0
votes
2answers
595 views
Why would internet explorer conflict with lighttpd/mod_compress?
We've been running lighttpd on our image servers for quite some time, but in an effort to speed up page load times, we've been working toward using mod_compress and etags to speed things up.
I've ...