From c1dc2410c3f88f2a0e05110585ac12c94796a60e Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 20 Aug 2007 14:03:40 +0000 Subject: [PATCH] Redirect trac requests to the right place. --- config/lighttpd.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config/lighttpd.conf b/config/lighttpd.conf index 0a6840e4b..7395a4b08 100644 --- a/config/lighttpd.conf +++ b/config/lighttpd.conf @@ -82,9 +82,12 @@ compress.filetype = ( compress.cache-dir = "/var/cache/lighttpd" # -# Redirect wiki requests to the wiki +# Redirect trac and wiki requests to the right places # -url.redirect = ( "^/wiki/(.*)$" => "http://wiki.openstreetmap.org/$1" ) +url.redirect = ( + "^/trac/(.*)$" => "http://trac.openstreetmap.org/$1", + "^/wiki/(.*)$" => "http://wiki.openstreetmap.org/$1" +) # # Serve static content from the rails public area ourselves -- 2.43.2