मैं यह कैसे सुनिश्चित करूं कि मेरी सामग्री Apache में gzip के माध्यम से भेजी जाए?


10

क्या कुछ सेटिंग है जो मैं अपाचे कॉन्फ़िगरेशन में खोज कर सकता हूं ताकि यह सुनिश्चित हो सके कि सभी पृष्ठ, सीएसएस और जावास्क्रिप्ट को gzip के माध्यम से भेजे गए हैं?

क्या वे अलग-अलग ऑपरेटिंग सिस्टम के लिए अलग-अलग जगहों पर स्थित हैं (यदि हां, तो मैं डेबियन चल रहा हूं)।


2
यह निश्चित रूप से विषय नहीं है।

जवाबों:


3

मैंने अपने httpd.conf में निम्नलिखित डाला और यह काम करने लगता है:

  # 20100709 added etag code
  FileETag MTime Size

  # 20100709 added compression START

  # Insert filter
  SetOutputFilter DEFLATE

  # Netscape 4.x has some problems...
  BrowserMatch ^Mozilla/4 gzip-only-text/html

  # Netscape 4.06-4.08 have some more problems
  BrowserMatch ^Mozilla/4\.0[678] no-gzip

  # MSIE masquerades as Netscape, but it is fine
  # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

  # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
  # the above regex won't work. You can use the following
  # workaround to get the desired effect:
  BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

  # Don't compress images
  SetEnvIfNoCase Request_URI \
  \.(?:gif|jpe?g|png)$ no-gzip dont-vary

  # Make sure proxies don't deliver the wrong content
  Header append Vary User-Agent env=!dont-vary

  # 20100709 added compression END

यह देखने के लिए कि आपके पृष्ठ में GZIP'd है: http://www.whatsmyip.org/http://comp4/


मुझे लगा कि Deflate के पास Internet Explorer के साथ समर्थन समस्याएँ थीं।
इवान प्लाइस

2

फ़ायरफ़ॉक्स में ySlow स्थापित करें और यह आपको बताएगा कि किस आइटम को gzipped किया जा रहा है।


0

RedBot , Cacheability Engine के उत्तराधिकारी, एक पृष्ठ का परीक्षण करने के लिए एक बहुत अच्छा काम करता है और कई सरल, आसानी से पढ़ने वाले ग्रिड प्रारूप में कई प्रदर्शन और cacheability मीट्रिक के लिए सामग्री।

उदाहरण: http://redbot.org/?descend=True&uri=http://www.microsoft.com/en/us/default.aspx

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.