28

Is there a command line command that can tell whether or not mod deflate is running on Apache?

Hackaholic
  • 19,069
  • 5
  • 54
  • 72
omg
  • 136,412
  • 142
  • 288
  • 348

6 Answers6

38

It is probably to late, but here we go.

mod_deflate is enabled per default. To be sure, try

debian / ubuntu: apache2ctl -t -D DUMP_MODULES

CentOS: httpd -t -D DUMP_MODULES

and look if there is a deflate_module.

Eva
  • 4,859
  • 3
  • 20
  • 26
Juri Glass
  • 88,173
  • 8
  • 33
  • 46
29

You can verify mod_deflate with this site:

mod_deflate test

My site gets a nice little report that shows I'm saving 81% of my bandwidth!

dicroce
  • 45,396
  • 28
  • 101
  • 140
  • 4
    This tool tests whether either mod_gzip, deflate or any other compression tool is working on the server, not just mod_deflate. – rhand Jan 06 '16 at 06:12
7

You'll want to make sure the following line is present (and not commented out) in your apache configuration (httpd.conf):

LoadModule deflate_module modules/mod_deflate.so

The commented out version looks like:

# LoadModule deflate_module modules/mod_deflate.so

Then to have it deflate files as they are served, you'll need a line in your .htaccess, like this:

AddOutputFilterByType DEFLATE text/html text/css text/plain text/xml application/x-javascript
karim79
  • 339,989
  • 67
  • 413
  • 406
5

I agree with the comments 'in what context' but to cover all bases (in addition to the other responses) you may also be able to run;

a2enmod deflate

This should work on many servers that run Apache (especially Debian based ones), in the event the module is already enabled the command will tell you, if the module isn't enabled the command will enable it. It may also tell you that the module doesn't exist in which case you will need to install it.

digitalpardoe
  • 471
  • 3
  • 3
0

You can view all modules loaded in Apache with this command:

apache2ctl -M
-1

Like said, we need precisions.

If you're using debian, you can enable this mode like this.

//List all available mods
cd /etc/apache2/mods-avaliable

//Enable module - if you need to enable another module, just replace "deflate"
a2enmod deflate

//restart apache
service apache2 restart

//Check that module is effectively enabled
cd /etc/apache2/mods-enabled

ls -al

That's all for linux debian environment.

Edouard Kombo
  • 505
  • 7
  • 7