如何在Apache2中打开gzip?


8

我只是做了:

sudo aptitude install apache2

这就是我的服务器的设置方式。没有额外的模块,什么也没有。

我在ubuntu骚扰中。

Answers:


5
sudo ln -s /etc/apache2/mods-available/deflate.load /etc/apache2/mods-enabled/

然后重新启动Apache

sudo /etc/init.d/apache2 restart

而已?我不必做其他事情了吗?一切都应该正常工作,好像什么都没有改变?
亚历克斯(Alex)2010年

4
或者,您也可以执行“ sudo a2enmod deflate”操作。
克里斯·金普顿

14

Debian / Ubuntu具有用于管理模块和虚拟主机的a2 *脚本集。您可以使用a2enmod:

$ sudo a2enmod deflate
Enabling module deflate.
Run '/etc/init.d/apache2 restart' to activate new configuration!
$ sudo /etc/init.d/apache2 restart
 * Restarting web server apache2
 ... waiting                                                             [ OK ]
$

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.