<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://www.kruedewagen.de/w/index.php?action=history&amp;feed=atom&amp;title=Apache%2Fdeflate_expires.conf</id>
	<title>Apache/deflate expires.conf - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://www.kruedewagen.de/w/index.php?action=history&amp;feed=atom&amp;title=Apache%2Fdeflate_expires.conf"/>
	<link rel="alternate" type="text/html" href="https://www.kruedewagen.de/w/index.php?title=Apache/deflate_expires.conf&amp;action=history"/>
	<updated>2026-04-21T11:00:48Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in www.kruedewagen.de</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://www.kruedewagen.de/w/index.php?title=Apache/deflate_expires.conf&amp;diff=8585&amp;oldid=prev</id>
		<title>Rkr: Die Seite wurde neu angelegt: „&lt;syntaxhighlight lang=&quot;apache&quot;&gt; # http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/ # http://gtmetrix.com/enable-gzip-compre…“</title>
		<link rel="alternate" type="text/html" href="https://www.kruedewagen.de/w/index.php?title=Apache/deflate_expires.conf&amp;diff=8585&amp;oldid=prev"/>
		<updated>2014-08-26T06:37:25Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „&amp;lt;syntaxhighlight lang=&amp;quot;apache&amp;quot;&amp;gt; # http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/ # http://gtmetrix.com/enable-gzip-compre…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;apache&amp;quot;&amp;gt;&lt;br /&gt;
# http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/&lt;br /&gt;
# http://gtmetrix.com/enable-gzip-compression.html&lt;br /&gt;
# http://stackoverflow.com/questions/12367858/how-can-i-get-apache-gzip-compression-to-work&lt;br /&gt;
# http://tecadmin.net/how-to-enable-gzip-compression-on-apache/&lt;br /&gt;
# http://www.linux-faqs.info/apache/optimize-website-speed-with-mod-expire-and-mod-deflate&lt;br /&gt;
&lt;br /&gt;
#http://httpd.apache.org/docs/2.2/mod/core.html#fileetag&lt;br /&gt;
# &amp;quot;none&amp;quot; might be problematic with wiki images being updated?&lt;br /&gt;
#FileETag none&lt;br /&gt;
&lt;br /&gt;
&amp;lt;IfModule mod_deflate.c&amp;gt;&lt;br /&gt;
        # Insert filters&lt;br /&gt;
        AddOutputFilterByType DEFLATE text/plain&lt;br /&gt;
        AddOutputFilterByType DEFLATE text/html&lt;br /&gt;
        AddOutputFilterByType DEFLATE text/xml&lt;br /&gt;
        AddOutputFilterByType DEFLATE text/css&lt;br /&gt;
        AddOutputFilterByType DEFLATE text/javascript&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/xml&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/xhtml+xml&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/atom+xml&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/rss+xml&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/javascript&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/x-javascript&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/x-httpd-php&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/x-httpd-fastphp&lt;br /&gt;
        AddOutputFilterByType DEFLATE application/x-httpd-php-source&lt;br /&gt;
        AddOutputFilterByType DEFLATE image/svg+xml&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;IfModule mod_setenvif.c&amp;gt;&lt;br /&gt;
                # Drop problematic browsers&lt;br /&gt;
                # Netscape 4.x has some problems...&lt;br /&gt;
                BrowserMatch ^Mozilla/4 gzip-only-text/html&lt;br /&gt;
                # Netscape 4.06-4.08 have some more problems&lt;br /&gt;
                BrowserMatch ^Mozilla/4\.0[678] no-gzip&lt;br /&gt;
                # MSIE masquerades as Netscape, but it is fine&lt;br /&gt;
                BrowserMatch \bMSIE !no-gzip !gzip-only-text/html&lt;br /&gt;
                BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html&lt;br /&gt;
&lt;br /&gt;
                # Don&amp;#039;t compress images&lt;br /&gt;
                SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary&lt;br /&gt;
&lt;br /&gt;
                # Make sure proxies don&amp;#039;t deliver the wrong content&lt;br /&gt;
                &amp;lt;IfModule mod_headers.c&amp;gt;&lt;br /&gt;
                        Header append Vary User-Agent env=!dont-vary&lt;br /&gt;
                &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
        &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;IfModule mod_expires.c&amp;gt;&lt;br /&gt;
        ExpiresActive On&lt;br /&gt;
        ExpiresByType text/html A1&lt;br /&gt;
        ExpiresByType application/xhtml+xml A1&lt;br /&gt;
        # Add Expire header set to 30 days (far future)&lt;br /&gt;
        ExpiresByType text/css A2592000&lt;br /&gt;
        ExpiresByType text/javascript A2592000&lt;br /&gt;
        ExpiresByType application/javascript A2592000&lt;br /&gt;
        ExpiresByType application/x-javascript A2592000&lt;br /&gt;
        ExpiresByType image/gif A2592000&lt;br /&gt;
        ExpiresByType image/png A2592000&lt;br /&gt;
        ExpiresByType image/jpg A2592000&lt;br /&gt;
        ExpiresByType image/jpeg A2592000&lt;br /&gt;
        ExpiresByType image/x-icon A2592000&lt;br /&gt;
        ExpiresByType image/vnd.microsoft.icon A2592000&lt;br /&gt;
        ExpiresByType image/svg+xml A2592000&lt;br /&gt;
        ExpiresByType text/plain A2592000&lt;br /&gt;
        # Add Expire header set to 1 day&lt;br /&gt;
        ExpiresByType text/xml A108000&lt;br /&gt;
        ExpiresByType application/x-httpd-php A108000&lt;br /&gt;
        ExpiresByType application/x-httpd-fastphp A108000&lt;br /&gt;
        ExpiresByType application/x-httpd-php-source A108000&lt;br /&gt;
        # Add Expire header set to 1 hour&lt;br /&gt;
        ExpiresByType application/xml A108000&lt;br /&gt;
        ExpiresByType application/atom+xml A108000&lt;br /&gt;
        ExpiresByType application/rss+xml A108000&lt;br /&gt;
&amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Fallback - when there is no mod_expires, try to add far future expire headers using mod_headers&lt;br /&gt;
&amp;lt;IfModule !mod_expires.c&amp;gt;&lt;br /&gt;
        &amp;lt;IfModule mod_headers.c&amp;gt;&lt;br /&gt;
                &amp;lt;Files ~ &amp;quot;\.(gif|jpe?g|png|css|ico|js)$&amp;quot;&amp;gt;&lt;br /&gt;
                        Header set Expires &amp;quot;Thu, 15 Apr 2020 20:00:00 GMT&amp;quot;&lt;br /&gt;
                &amp;lt;/Files&amp;gt;&lt;br /&gt;
        &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rkr</name></author>
	</entry>
</feed>