mod-deflate Questions

6

Is there a command line command that can tell whether or not mod deflate is running on Apache?
Cottonmouth asked 9/6, 2009 at 13:38

3

Solved

I read some articles about HTTP headers compression. Today I installed YSlow and it recommends that I compress the resources (text/html, javascript, css and images). Now I'm reading the documentati...
Contradictory asked 10/2, 2011 at 12:39

3

I´m enabling gzip compression to increase the speed in Google PageSpeed Insights: If compressed mantaspersonalizadas.com/fonts/Cocktail-Shaker.svg, would save 144.1 KB (65% reduction). If compress...
Oisin asked 13/2, 2015 at 11:30

1

Solved

I have the following (simplified) folder/file structure: /.htaccess /test.php /api/web/index.php And the following directive in apache config: <IfModule mod_deflate.c> <IfModule mod_f...
Aeonian asked 6/7, 2017 at 14:22

2

Solved

With Apache httpd 2.2, it was possible to setup a reverse proxy and use mod_deflate for compressing proxied content, honoring Accept-Encoding: gzip headers. This configuration was sufficient for ...
Precarious asked 5/1, 2018 at 16:9

6

Can someone tell me the difference in the following scripts in terms of CPU load performance and compression? <ifModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_incl...
Kopaz asked 21/4, 2012 at 1:36

4

I have added the following line in my Apache httpd.conf: - AddOutputFilterByType DEFLATE text/html text/css application/javascript application/x-javascript application/json I have a html file (t...
South asked 22/5, 2009 at 9:0

3

Solved

How can I disable mod_deflate in Apache2 For files in a specific directory OR For all files that have extension of, for example .py?
Greasepaint asked 17/12, 2009 at 16:28

8

Solved

I am serving all content through apache with Content-Encoding: zip but that compresses on the fly. A good amount of my content is static files on the disk. I want to gzip the files beforehand rathe...
Halfcocked asked 16/9, 2008 at 18:30

0

I am writing an apache module output filter that needs to consume a couple of internal-only response headers. These response headers are set by a perl based application running in the backend. The ...
Dolabriform asked 6/7, 2015 at 14:49

1

Solved

To compress all my web page, I use this .htaccess code. It uses Apache deflate module if possible, else apply the PHP ob_gzhandler compression. Everything is working fine, but for specific reason,...
Hydantoin asked 5/1, 2013 at 11:7

4

Solved

We're deploying Django apps with Apache 2.2 + mod_wsgi. Should we enable mod_deflate in Apache or use Django's GZipMiddleware? Which option performs better?
Querist asked 13/7, 2009 at 19:36

3

I have a long running script in a shared hosting environment that outputs a bunch of XML Sometimes (only sometimes) a random GZIP header will appear in my output, and the output will be terminated...
Oldwife asked 4/2, 2014 at 9:0

1

Solved

I'm trying to use 'mod_deflate' (and other requires extensions) to apply GZIP compression to my local hosted site (Apache, 2.4.4.0). This is the code I'm using (.htaccess): SetOutputFilter DEFLAT...
Rubber asked 2/8, 2013 at 13:52

5

Solved

I'm having some trouble prevent mod_deflate from jumping in on this scenario: user running CodeIgniter (or any other framework that re-directs to index.php) mod_deflate is active zip file is serv...
Oklahoma asked 20/6, 2011 at 0:25

1

Solved

I've followed all the steps in multiple tutorials to enable mod_deflate in Apache but I'm still not seeing compression (in Fiddler) when I issue requests for json (via PHP script) to my local web s...
Matthiew asked 25/1, 2012 at 20:7

1

Solved

I've finally gotten a VPS hosting account set up this allows me to use mod_deflate and mod_header (of course). I'm attempting to make my site faster by YSlow's guidelines which include gzipping (vi...
Hid asked 24/11, 2011 at 20:24

1

Solved

When running the assets:precompile rake task, gzipped versions of your app's assets are created. According to the Rails guide for the asset pipeline, you can configure your web server (in my case A...
Yirinec asked 22/9, 2011 at 4:16

2

Solved

I'm running a simple load test with apache benchmark: ab -n 1 http://localhost/mysite/index/index/ I want to see performance with/without mod_deflate In my httpd.conf: #mod_deflate enabled Loa...
Fairground asked 10/6, 2011 at 10:58

3

EDIT I have found that the problem is actually php minify. This was sending the deflated content instead of Apache. I'll find more on this. According to High Performance Web Sites, if I enable mod...
Clawson asked 18/5, 2009 at 14:33

3

I minify my css and js files on the fly with google.codes minify. I have also set my .htaccess to use deflate on all my css and js files - the reason beeing some js files (like shadowbox and tinymc...
Tai asked 8/1, 2010 at 1:40

1

Solved

Can anyone tell me the difference between using mod_deflate and zlib output_compression? I understand that zlib is done in PHP and mod_deflate is done in Apace, my .htaccess file looks like: php_...
Aladdin asked 14/4, 2010 at 8:57

2

Solved

I'm using mod_deflate on Apache 2.2 and the compression level is set to 9. I've fine tuned every possible aspects of the site based on the recommendations of YSlow (v2) and have managed to get an o...
Adame asked 10/6, 2009 at 6:27

3

I have a client/server system that performs communication using XML transferred using HTTP requests and responses with the client using Perl's LWP and the server running Perl's CGI.pm through Apach...
Assemblage asked 25/9, 2008 at 21:56
1

© 2022 - 2024 — McMap. All rights reserved.