From 15aac48c022c25f6892f8f42bb6d6fbfd9225be2 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Sun, 9 Sep 2007 00:33:25 +0200 Subject: [PATCH] apache.conf: Let apache send static files directly if possible If we have no QUERY_STRING and a static file is requested, let apache handle this directly. This also reenables the behaviour that packages.debian.org/etch goes to packages.debian.org/etch/ instead of searching for etch. Also use Encoding for .gz, not Type. --- conf/apache.conf.sed.in | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/conf/apache.conf.sed.in b/conf/apache.conf.sed.in index c9c3022..c71ef22 100644 --- a/conf/apache.conf.sed.in +++ b/conf/apache.conf.sed.in @@ -74,6 +74,9 @@ # RSS stuff AddType application/rss+xml .rdf .xml + + RemoveType .gz + AddEncoding x-gzip .gz @@ -129,6 +132,13 @@ RewriteRule ^/src:([^/]+)$ /source/$1 [R,L,NE] RewriteRule ^/file:(.+)$ http://%SITE%/search?searchon=contents&keywords=$1 [R,L,NE] + RewriteCond %{QUERY_STRING} ="" + RewriteCond %TOPDIR%/www%{REQUEST_FILENAME} -f [OR] + RewriteCond %TOPDIR%/www%{REQUEST_FILENAME}.en.html -f [OR] + RewriteCond %TOPDIR%/www%{REQUEST_FILENAME} -l [OR] + RewriteCond %TOPDIR%/www%{REQUEST_FILENAME} -d + RewriteRule . - [L] + RewriteRule ^/(.+)$ /cgi-bin/dispatcher.pl/$1 [L,PT] # In case we need to disable the site again -- 2.39.2