From 14ecf7f9ab253fbd5c4d1e02b78cf3287b2921ab Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 9 Mar 2009 12:26:37 +0000 Subject: Closes #823: Root cause was that the Headers decl requires mod_headers to be installed (and Apache had a very unhelpful failure mode for instances when it wasn't). The Header def has now been IfModuled out. mod_headers is still recommended for correct functioning across proxies. git-svn-id: https://code.elgg.org/elgg/trunk@3140 36083f99-b078-4883-b0ff-0f9b5a30f544 --- htaccess_dist | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/htaccess_dist b/htaccess_dist index 1c876ee12..6f6794d77 100644 --- a/htaccess_dist +++ b/htaccess_dist @@ -74,26 +74,25 @@ DirectoryIndex index.php ## Apache2 deflate support if available ## -## Important note: This is commented out by default as the Header definition (required for correct functioning -## through proxy servers) causes an internal server error on some versions of Apache2. Other installations work fine, -## your mileage may vary. +## Important note: mod_headers is required for correct functioning across proxies. ## -## Further details here: http://trac.elgg.org/elgg/ticket/823 -## -# -# AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript -# BrowserMatch ^Mozilla/4 gzip-only-text/html -# BrowserMatch ^Mozilla/4\.[0678] no-gzip -# BrowserMatch \bMSIE !no-gzip -# Header append Vary User-Agent env=!dont-vary + + AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript + BrowserMatch ^Mozilla/4 gzip-only-text/html + BrowserMatch ^Mozilla/4\.[0678] no-gzip + BrowserMatch \bMSIE !no-gzip + + + Header append Vary User-Agent env=!dont-vary + + + # The following is to disable compression for actions. The reason being is that these + # may offer direct downloads which (since the initial request comes in as text/html and headers + # get changed in the script) get double compressed and become unusable when downloaded by IE. + SetEnvIfNoCase Request_URI action\/* no-gzip dont-vary + SetEnvIfNoCase Request_URI actions\/* no-gzip dont-vary -# # The following is to disable compression for actions. The reason being is that these -# # may offer direct downloads which (since the initial request comes in as text/html and headers -# # get changed in the script) get double compressed and become unusable when downloaded by IE. -# SetEnvIfNoCase Request_URI action\/* no-gzip dont-vary -# SetEnvIfNoCase Request_URI actions\/* no-gzip dont-vary -# -# + # Configure ETags -- cgit v1.2.3