-->

how to check mod_deflate is enabled in apache?

2019-03-23 01:18发布

问题:

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

回答1:

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.



回答2:

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!



回答3:

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


回答4:

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.



回答5:

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.