ฉันจะเปิด gzip ใน Apache2 ได้อย่างไร


8

ฉันทำ:

sudo aptitude install apache2

และนี่คือวิธีการตั้งค่าเซิร์ฟเวอร์ของฉัน ไม่มีโมดูลพิเศษไม่มีอะไรเลย

ฉันใช้อูบุนตูอย่างร่าเริง

คำตอบ:


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

และรีสตาร์ท apache

sudo /etc/init.d/apache2 restart

แค่นั้นแหละ? ฉันไม่ต้องทำอะไรอีกเลยเหรอ? ทุกอย่างควรทำงานอย่างถูกต้องราวกับไม่มีอะไรเปลี่ยนแปลง?
Alex

4
หรือคุณสามารถทำ "sudo a2enmod deflate" ซึ่งทำสิ่งเดียวกัน
Chris Kimpton

14

Debian / Ubuntu มีชุดสคริปต์ขนาด a2 * สำหรับจัดการโมดูลและ vhosts คุณสามารถใช้ 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 ]
$

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.