how to check mod_deflate is enabled in apache?

2019-03-23 01:11发布

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

5条回答
做个烂人
2楼-- · 2019-03-23 01:49

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.

查看更多
再贱就再见
3楼-- · 2019-03-23 01:50

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.

查看更多
等我变得足够好
4楼-- · 2019-03-23 01:51

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!

查看更多
兄弟一词,经得起流年.
5楼-- · 2019-03-23 02:01

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
查看更多
【Aperson】
6楼-- · 2019-03-23 02:02

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.

查看更多
登录 后发表回答