Redirect trac requests to the right place.

This commit is contained in:
Tom Hughes 2007-08-20 14:03:40 +00:00
parent 755a2c596c
commit c1dc2410c3

View file

@ -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